diff options
author | erciccione <erciccione@protonmail.com> | 2021-04-20 11:47:21 +0200 |
---|---|---|
committer | erciccione <erciccione@protonmail.com> | 2021-06-21 10:18:09 +0200 |
commit | de4413b0764613a9174bd51f9990ae2c0fdc3734 (patch) | |
tree | cab080c1831f1edf6a823b95942e878604647f2e /.github/workflows/build.yml | |
parent | Revert "Merge pull request #7136" (diff) | |
download | monero-de4413b0764613a9174bd51f9990ae2c0fdc3734.tar.xz |
workflows: don't build PRs if only docs and READMEs are being changed
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index aa6afbfbc..b84c6b0cc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,6 +1,11 @@ name: ci/gh-actions/cli -on: [push, pull_request] +on: + push: + pull_request: + paths-ignore: + - 'docs/**' + - '**/README.md' jobs: build-macos: |