diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2022-03-18 16:26:52 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2022-03-18 16:26:52 -0500 |
| commit | f4d99dcca73e6c6c947a7afb96037c535007a8b7 (patch) | |
| tree | e5704eb0e2ff054b950e6d51b54e96d1802bd289 /.github | |
| parent | d562deaaa950979b7a31a441a8f02a00013e26d6 (diff) | |
| parent | de4413b0764613a9174bd51f9990ae2c0fdc3734 (diff) | |
| download | monzero-core-f4d99dcca73e6c6c947a7afb96037c535007a8b7.tar.gz monzero-core-f4d99dcca73e6c6c947a7afb96037c535007a8b7.tar.xz monzero-core-f4d99dcca73e6c6c947a7afb96037c535007a8b7.zip | |
Merge pull request #7675
de4413b workflows: don't build PRs if only docs and READMEs are being changed (erciccione)
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build.yml | 7 | ||||
| -rw-r--r-- | .github/workflows/depends.yml | 7 |
2 files changed, 12 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b97be58b9..bd2e26484 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' # The below variables reduce repetitions across similar targets env: diff --git a/.github/workflows/depends.yml b/.github/workflows/depends.yml index 74d0ceabc..9385338de 100644 --- a/.github/workflows/depends.yml +++ b/.github/workflows/depends.yml @@ -1,6 +1,11 @@ name: ci/gh-actions/depends -on: [push, pull_request] +on: + push: + pull_request: + paths-ignore: + - 'docs/**' + - '**/README.md' env: APT_SET_CONF: | |
