mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
workflows: don't build PRs if only docs and READMEs are being changed
This commit is contained in:
parent
e45619e61e
commit
de4413b076
2 changed files with 12 additions and 2 deletions
7
.github/workflows/build.yml
vendored
7
.github/workflows/build.yml
vendored
|
@ -1,6 +1,11 @@
|
||||||
name: ci/gh-actions/cli
|
name: ci/gh-actions/cli
|
||||||
|
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
push:
|
||||||
|
pull_request:
|
||||||
|
paths-ignore:
|
||||||
|
- 'docs/**'
|
||||||
|
- '**/README.md'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-macos:
|
build-macos:
|
||||||
|
|
7
.github/workflows/depends.yml
vendored
7
.github/workflows/depends.yml
vendored
|
@ -1,6 +1,11 @@
|
||||||
name: ci/gh-actions/depends
|
name: ci/gh-actions/depends
|
||||||
|
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
push:
|
||||||
|
pull_request:
|
||||||
|
paths-ignore:
|
||||||
|
- 'docs/**'
|
||||||
|
- '**/README.md'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-macos:
|
build-macos:
|
||||||
|
|
Loading…
Reference in a new issue