Skip to content

Commit

Permalink
Fix the workflow backport filter
Browse files Browse the repository at this point in the history
  • Loading branch information
mjpieters committed Mar 28, 2022
1 parent ff9f159 commit c37406e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Expand Up @@ -4,13 +4,12 @@ on:
push:
branches:
- master
- ?.?* # matches to backport branches, e.g. 3.9
- '[0-9].[0-9]+' # matches to backport branches, e.g. 3.9
tags: [ 'v*' ]
pull_request:
branches:
- master
- ?.?*
types: [opened, reopened]
- '[0-9].[0-9]+' # matches to backport branches, e.g. 3.9
schedule:
- cron: '0 6 * * *' # Daily 6AM UTC build

Expand Down
3 changes: 2 additions & 1 deletion CHANGES/700.misc.rst → CHANGES/703.misc.rst
@@ -1 +1,2 @@
Updated the GitHub workflow to avoid running unnecessary extra jobs.
Updated the GitHub workflow to avoid running unnecessary extra jobs,
cancelling concurrent runs, and fixing filter syntax.

0 comments on commit c37406e

Please sign in to comment.