Skip to content

Commit

Permalink
Adjust workflow path filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
Tsingis committed May 24, 2024
1 parent 18b3316 commit e3ffa65
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
name: codeql
on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
- cron: "0 21 * * 0"
workflow_dispatch:
jobs:
analyze:
runs-on: ubuntu-latest
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ on:
push:
branches:
- master
paths:
- "**"
- "!tests/**"
- "!README.md"
- "!.gitignore"
- "!.github/**"
- ".github/workflows/release.yaml"
workflow_dispatch:
jobs:
release:
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,21 @@ on:
push:
branches:
- master
paths:
- "**"
- "!README.md"
- "!.gitignore"
- "!.github/**"
- ".github/workflows/test.yaml"
pull_request:
branches:
- master
paths:
- "**"
- "!README.md"
- "!.gitignore"
- "!.github/**"
- ".github/workflows/test.yaml"
workflow_dispatch:
jobs:
test:
Expand Down

0 comments on commit e3ffa65

Please sign in to comment.