aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2021-10-31 20:03:24 -0400
committerJames McCoy <jamessan@jamessan.com>2021-10-31 20:05:52 -0400
commitea2ce90cc67ad2783a5453efe84007b47934973a (patch)
treec83fd84aeec7e2245d0440d4b8d8b891d5f402bc
parent5ad15c9fa1ac6e6b2acfc2fe5e20148adeb85eb3 (diff)
downloadrneovim-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.yml4
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: