Skip to content

Commit 96e4560

Browse files
committed
Fix the workflow backport filter
1 parent 8c49920 commit 96e4560

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@ on:
44
push:
55
branches:
66
- master
7-
- ?.?* # matches to backport branches, e.g. 3.9
7+
- '[0-9].[0-9]+' # matches to backport branches, e.g. 3.9
88
tags: [ 'v*' ]
99
pull_request:
1010
branches:
1111
- master
12-
- ?.?*
13-
types: [opened, reopened]
12+
- '[0-9].[0-9]+' # matches to backport branches, e.g. 3.9
1413
schedule:
1514
- cron: '0 6 * * *' # Daily 6AM UTC build
1615

0 commit comments

Comments
 (0)