Skip to content

Commit 4b0ac28

Browse files
committed
Fix the workflow backport filter
1 parent ff9f159 commit 4b0ac28

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
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

CHANGES/700.misc.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
Updated the GitHub workflow to avoid running unnecessary extra jobs.
1+
Updated the GitHub workflow to avoid running unnecessary extra jobs and
2+
cancelling concurrent runs.

0 commit comments

Comments
 (0)