about summary refs log tree commit diff
path: root/.github/workflows/check-cherry-picks.yml
diff options
context:
space:
mode:
authorThomas Gerbet <thomas@gerbet.me>2024-04-09 19:27:11 +0200
committerThomas Gerbet <thomas@gerbet.me>2024-04-09 19:27:11 +0200
commit01127f2276501cc94575a6dc80e6190e021c3c24 (patch)
treee22e9b76520e8b2ef9b2f3b7cdbf809e128f635a /.github/workflows/check-cherry-picks.yml
parente7abae2ddaedff2d60729a485b571060f62a0742 (diff)
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
Diffstat (limited to '.github/workflows/check-cherry-picks.yml')
-rw-r--r--.github/workflows/check-cherry-picks.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/check-cherry-picks.yml b/.github/workflows/check-cherry-picks.yml
index 9e7f6e277e993..8dfc3f6c06062 100644
--- a/.github/workflows/check-cherry-picks.yml
+++ b/.github/workflows/check-cherry-picks.yml
@@ -2,8 +2,8 @@ name: "Check cherry-picks"
 on:
   pull_request_target:
     branches:
-     - 'release-*'
-     - 'staging-*'
+     - 'release-**'
+     - 'staging-**'
 
 permissions: {}