Skip to content

Commit

Permalink
ci: Trigger actions on pull requests to rc/v* branches (#5626)
Browse files Browse the repository at this point in the history
- With new rc/v* branches created, we need the actions to run on those branches as well
  • Loading branch information
mofojed committed Jun 17, 2024
1 parent a97b459 commit f2eed4b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Check CI

on:
pull_request:
branches: [ main ]
branches: [ 'main', 'rc/v*' ]
push:
branches: [ 'main', 'check/**', 'release/v*' ]

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/create-docs-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
pull_request_target:
branches:
- main
- 'rc/v*'
types:
- closed

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Docs CI

on:
pull_request:
branches: [ main ]
branches: [ 'main', 'rc/v*' ]
push:
branches: [ 'main', 'release/v*' ]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label-check-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
# effect the labels because the merge requirements need checks to pass against the most recent
# commit.
types: [ opened, synchronize, reopened, labeled, unlabeled ]
branches: [ main ]
branches: [ 'main', 'rc/v*' ]

jobs:
doc-labels:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches: [ 'main', 'release/v*' ]
pull_request:
branches: [ main ]
branches: [ 'main', 'rc/v*' ]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/quick-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Quick CI

on:
pull_request:
branches: [ main ]
branches: [ 'main', 'rc/v*' ]
push:
branches: [ 'main', 'check/**', 'release/v*' ]

Expand Down

0 comments on commit f2eed4b

Please sign in to comment.