Skip to content

Commit

Permalink
GH Actions: clean up after branch rename
Browse files Browse the repository at this point in the history
Make sure branch names in the branch selection are correct to ensure builds will still run when appropriate.
  • Loading branch information
jrfnl committed Nov 5, 2022
1 parent 7d30787 commit 49404ef
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cs.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: CS

on:
# Run on all pushes (except to master) and on all pull requests.
# Run on all pushes (except to main) and on all pull requests.
push:
branches-ignore:
- 'master'
- 'main'
pull_request:
# Allow manually triggering the workflow.
workflow_dispatch:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
# Run on pushes to select branches and on all pull requests.
push:
branches:
- master
- main
- trunk
- 'release/**'
- 'hotfix/[0-9]+.[0-9]+*'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
# Run on pushes to select branches and on all pull requests.
push:
branches:
- master
- main
- trunk
- 'release/**'
- 'hotfix/[0-9]+.[0-9]+*'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
# Run on pushes to select branches and on all pull requests.
push:
branches:
- master
- main
- trunk
- 'release/**'
- 'hotfix/[0-9]+.[0-9]+*'
Expand Down

0 comments on commit 49404ef

Please sign in to comment.