diff options
author | Sam Clegg <sbc@chromium.org> | 2020-02-06 17:08:37 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-06 17:08:37 -0800 |
commit | 3dc09d11ff4396c9a4cf903cae2ed6a88f5982b6 (patch) | |
tree | cb8a52613f21f624f228f1e0492ece61e56f2f99 /.github | |
parent | 417a5be8678b22296c2dfa7e12f87a577225d776 (diff) | |
download | wabt-3dc09d11ff4396c9a4cf903cae2ed6a88f5982b6.tar.gz wabt-3dc09d11ff4396c9a4cf903cae2ed6a88f5982b6.tar.bz2 wabt-3dc09d11ff4396c9a4cf903cae2ed6a88f5982b6.zip |
actions: Avoid triggering both branch and pr builds (#1329)
This adds some more nuanced triggering for github actions.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 64ba8511..b08ab4c9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,6 +1,12 @@ name: CI -on: [push, pull_request] +on: + create: + tags: + push: + branches: + - master + pull_request: jobs: build: |