diff options
author | James McCoy <jamessan@jamessan.com> | 2020-12-05 12:02:00 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2020-12-05 13:04:25 -0500 |
commit | dfc4111e421bbb2cb8a4da04121538a06512b4e9 (patch) | |
tree | 23b8a8fac28f84bdaeb2316fe56369f089f661d3 | |
parent | e11f3fb726db3eb9fb2cd18720d96fdc55d2447f (diff) | |
download | rneovim-dfc4111e421bbb2cb8a4da04121538a06512b4e9.tar.gz rneovim-dfc4111e421bbb2cb8a4da04121538a06512b4e9.tar.bz2 rneovim-dfc4111e421bbb2cb8a4da04121538a06512b4e9.zip |
GHA: Do not run CI for tags
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 70cdc3b4a2..dcc3c2c45f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,5 +1,9 @@ name: CI -on: [push, pull_request] +on: + push: + branches: '**' + pull_request: + branches: 'master' jobs: build: |