diff options
author | James McCoy <jamessan@jamessan.com> | 2021-10-31 20:03:24 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2021-10-31 20:05:52 -0400 |
commit | ea2ce90cc67ad2783a5453efe84007b47934973a (patch) | |
tree | c83fd84aeec7e2245d0440d4b8d8b891d5f402bc | |
parent | 5ad15c9fa1ac6e6b2acfc2fe5e20148adeb85eb3 (diff) | |
download | rneovim-ea2ce90cc67ad2783a5453efe84007b47934973a.tar.gz rneovim-ea2ce90cc67ad2783a5453efe84007b47934973a.tar.bz2 rneovim-ea2ce90cc67ad2783a5453efe84007b47934973a.zip |
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]
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aba0de9e5a..5bedafefd0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: |