Skip to content

Commit 1910f52

Browse files
authored
Fix the workflow backport filter (#703)
1 parent ff9f159 commit 1910f52

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

+2-3
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

CHANGES/703.misc.rst

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Furter cleaned up github workflow event matching.

0 commit comments

Comments
 (0)