Skip to content

Commit

Permalink
Make build.yml triggers include all release_* branches
Browse files Browse the repository at this point in the history
Make the on/push and on/pull_request triggers list release_* branches
instead of only release_4* so that validation builds are triggered for
all release branches when changes are being backported.
  • Loading branch information
olegsych committed Mar 25, 2024
1 parent 4cf8351 commit 582d155
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ on:
push:
branches:
- develop
- release_4*
- 'release_*'

pull_request:
branches:
- develop
- release_4*
- 'release_*'

jobs:
build:
Expand Down

0 comments on commit 582d155

Please sign in to comment.