aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2021-11-01 06:37:37 -0400
committerGitHub <noreply@github.com>2021-11-01 06:37:37 -0400
commit7f4b7320f63eee37841b9b7608495a3f6f9d2fb7 (patch)
tree2a0ae967de79f31c11603427584e53697047822f
parent519d8deb08f369c559e7cbd61627c56db88623f1 (diff)
parentea2ce90cc67ad2783a5453efe84007b47934973a (diff)
downloadrneovim-7f4b7320f63eee37841b9b7608495a3f6f9d2fb7.tar.gz
rneovim-7f4b7320f63eee37841b9b7608495a3f6f9d2fb7.tar.bz2
rneovim-7f4b7320f63eee37841b9b7608495a3f6f9d2fb7.zip
Merge pull request #16198 from jamessan/limit-ci-branches
ci: limit CI checks to the main dev branches
-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: