Skip to content

Commit

Permalink
chore: extend the branches that workflows run on
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasgriffintn committed Jun 28, 2024
1 parent 25bbb27 commit 18df66e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ name: "CodeQL"

on:
push:
branches: [ "main" ]
branches: [ "main", "canary", "*.x" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "main" ]
branches: [ "main", "canary", "*.x" ]
schedule:
- cron: '43 21 * * 2'

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@ name: Report Coverage
on:
pull_request:
branches:
- canary
- "*.x"
- 'main'
push:
branches:
- canary
- "*.x"
- main
permissions:
contents: read
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pr-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Comment PR Coverage
on:
pull_request:
branches:
- canary
- "*.x"
- 'main'
permissions:
contents: read
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@ name: Run Tests
on:
pull_request:
branches:
- canary
- "*.x"
- 'main'
push:
branches:
- canary
- "*.x"
- main
permissions:
contents: read
Expand Down

0 comments on commit 18df66e

Please sign in to comment.