ci: fix the branch patterns of the 'Check cherry-picks' action

For reference on the acceptable pattern:
https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet
This commit is contained in:
Thomas Gerbet 2024-04-09 19:27:11 +02:00
parent e7abae2dda
commit 01127f2276
1 changed files with 2 additions and 2 deletions

View File

@ -2,8 +2,8 @@ name: "Check cherry-picks"
on:
pull_request_target:
branches:
- 'release-*'
- 'staging-*'
- 'release-**'
- 'staging-**'
permissions: {}