Skip to content

Commit

Permalink
Merge pull request #63 from bpradipt/skip-ci
Browse files Browse the repository at this point in the history
Skip GH action workflow on changes to md files
  • Loading branch information
bpradipt authored Dec 5, 2024
2 parents ea0b255 + 1a3fffe commit 5423675
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/docker-publish-latest-on-merge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ on:
push:
branches:
- main
# Skip CI when changes are made to *.md files
paths-ignore:
- '**.md'

env:

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/gofmt.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ on:
pull_request:
branches:
- main
# Skip CI when changes are made to *.md files
paths-ignore:
- '**.md'

permissions:
contents: read
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/golangci-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ on:
pull_request:
branches:
- main
# Skip CI when changes are made to *.md files
paths-ignore:
- '**.md'

permissions:
contents: read
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/kuttl-int-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ on:
pull_request:
branches:
- main
# Skip CI when changes are made to *.md files
paths-ignore:
- '**.md'

env:
KUTTL: /usr/local/bin/kubectl-kuttl
Expand Down

0 comments on commit 5423675

Please sign in to comment.