diff options
author | James McCoy <jamessan@jamessan.com> | 2021-11-01 06:37:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-01 06:37:37 -0400 |
commit | 7f4b7320f63eee37841b9b7608495a3f6f9d2fb7 (patch) | |
tree | 2a0ae967de79f31c11603427584e53697047822f | |
parent | 519d8deb08f369c559e7cbd61627c56db88623f1 (diff) | |
parent | ea2ce90cc67ad2783a5453efe84007b47934973a (diff) | |
download | rneovim-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.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: |