Prevent CI from running on README/docs updates
This commit is contained in:
parent
ecc6ef169a
commit
37dd233339
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:
|
||||
push:
|
||||
branches: [ master, dev ]
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
- 'doc/**'
|
||||
- '.github/**'
|
||||
pull_request:
|
||||
branches: [ master, dev ]
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
- 'doc/**'
|
||||
- '.github/**'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
Loading…
Reference in a new issue