ci: limit CI checks to the main dev branches

Now that we have various GH actions creating branches in the main repo,
using the generic '**' pattern for the CI workflow is just wasting CI
time and leading to more queued jobs.

[skip ci]
This commit is contained in:
James McCoy 2021-10-31 20:03:24 -04:00
parent 5ad15c9fa1
commit ea2ce90cc6
No known key found for this signature in database
GPG Key ID: DFE691AE331BA3DB

View File

@ -1,7 +1,9 @@
name: CI
on:
push:
branches: ['**']
branches:
- 'master'
- 'release-[0-9]+.[0-9]+'
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches: