Skip to content

Commit

Permalink
chore: Ignore markdown files and GitHub workflows in Docker and Go wo…
Browse files Browse the repository at this point in the history
…rkflows

Signed-off-by: dwertent <david.wertenteil@kaleido.io>
  • Loading branch information
dwertent committed Sep 6, 2024
1 parent a983877 commit e873d29
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/docker_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ on:
push:
branches:
- main
paths:
- '**' # include all files
- '!.github/**' # exclude .github directory
- '!**.md' # exclude all markdown files
- 'doc-site/docs/reference/**.md' # include markdown files that are auto generated and need to be tested

jobs:
docker:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@ name: Go
on:
push:
branches: [main]
paths-ignore:
- '**.md'
pull_request:
branches: [main]
paths-ignore:
- '**.md'
workflow_dispatch:

jobs:
Expand Down

0 comments on commit e873d29

Please # to comment.