Skip to content

Commit

Permalink
ci: Add missing files to path filters
Browse files Browse the repository at this point in the history
  • Loading branch information
bbhtt committed Dec 9, 2024
1 parent a5935a2 commit ab02895
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,13 @@ jobs:
- 'flatpak_builder_lint/!(staticfiles)/**'
- 'poetry.lock'
- 'pyproject.toml'
ignore-ci:
- '.git-blame-ignore-revs'
- '.gitignore'
- '.pre-commit-config.yaml'
- 'CODEOWNERS'
- 'LICENSE'
- 'README.md'
check:
runs-on: ubuntu-latest
Expand All @@ -59,7 +66,8 @@ jobs:
needs.changes.outputs.exceptions == 'false' &&
needs.changes.outputs.src == 'false' &&
needs.changes.outputs.src-extra == 'false' &&
needs.changes.outputs.docker == 'false'
needs.changes.outputs.docker == 'false' &&
needs.changes.outputs.ignore-ci == 'false'
}}; then
echo "No filter matched. This file is not covered by CI" && exit 1
else
Expand Down

0 comments on commit ab02895

Please sign in to comment.