Skip to content

Commit

Permalink
Let CI run on release branches
Browse files Browse the repository at this point in the history
  • Loading branch information
p-snft committed Aug 26, 2024
1 parent 80b1e42 commit caab94a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ name: "CodeQL"

on:
push:
branches: [ "dev", "master" ]
branches:
- dev
- master
- 'release/**'
pull_request:
branches: [ "dev" ]
schedule:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches:
- master
- dev
- 'release/**'
pull_request:

jobs:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ name: packaging
on:
# Make sure packaging process is not broken
push:
branches: [master, dev]
branches:
- master
- dev
- 'release/**'
pull_request:
# Make a package for release
release:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/tox_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
branches:
- master
- dev
- 'release/**'
pull_request:

workflow_dispatch:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/tox_pytests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches:
- master
- dev
- 'release/**'
pull_request:

workflow_dispatch:
Expand Down

0 comments on commit caab94a

Please sign in to comment.