diff options
author | Darius Jahandarie <djahandarie@gmail.com> | 2023-11-10 14:26:47 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-10 14:26:47 +0000 |
commit | c3429a7df5e3a89eadc5925e4cad28ace379d1d8 (patch) | |
tree | b27f0818c7bbbede94d9c67b208be942e62b8f0f /.github/workflows | |
parent | 6b51d59fce9c56f3b1e069f620c5064f8cb51406 (diff) | |
parent | 56a82ef989079d138ca96b3377b1c58e5b3c4603 (diff) |
Merge pull request #312 from themoeway/reduce-ci-runs
Prevent ci.yml from running twice on PR commits
Diffstat (limited to '.github/workflows')
-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 358ac1de..9106556e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,11 @@ name: CI permissions: contents: read -on: [push, pull_request] +on: + push: + branches: [master] + pull_request: + merge_group: jobs: test: |