Merge pull request #389 from elliotmatson/patch-2
Prevent CI from running on README/docs updates
This commit is contained in:
commit
859a250799
1 changed files with 8 additions and 0 deletions
8
.github/workflows/pio_build.yml
vendored
8
.github/workflows/pio_build.yml
vendored
|
@ -7,8 +7,16 @@ name: PlatformIO CI
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ master, dev ]
|
branches: [ master, dev ]
|
||||||
|
paths-ignore:
|
||||||
|
- '**.md'
|
||||||
|
- 'doc/**'
|
||||||
|
- '.github/**'
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ master, dev ]
|
branches: [ master, dev ]
|
||||||
|
paths-ignore:
|
||||||
|
- '**.md'
|
||||||
|
- 'doc/**'
|
||||||
|
- '.github/**'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
Loading…
Reference in a new issue