Skip to content

Commit

Permalink
ci: ignore some workflows when README.md or CHANGELOG.md is changed
Browse files Browse the repository at this point in the history
  • Loading branch information
kodehat committed Feb 26, 2024
1 parent 143a0fc commit 4840a6c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build-docker-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: Build and push latest Docker images
on:
push:
branches: [ main ]
paths-ignore:
- 'README.md'
- 'CHANGELOG.md'

jobs:
docker:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/fly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: Fly Deploy Demo Instance
on:
push:
branches: [ main ]
paths-ignore:
- 'README.md'
- 'CHANGELOG.md'

jobs:
deploy:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
branches: [ main, 'feature/**' ]
push:
branches: [ main, 'feature/**' ]
paths-ignore:
- 'README.md'
- 'CHANGELOG.md'

jobs:
test:
Expand Down

0 comments on commit 4840a6c

Please sign in to comment.