diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ec93bd52..ee6bc469 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/CHANGES/703.misc.rst b/CHANGES/703.misc.rst new file mode 100644 index 00000000..b861473d --- /dev/null +++ b/CHANGES/703.misc.rst @@ -0,0 +1 @@ +Furter cleaned up github workflow event matching.