mirror of https://github.com/arendst/Tasmota.git
Merge pull request #13469 from jziolkowski/trigger_files_inclusive
Update CI workflows with inclusive path filters
This commit is contained in:
commit
e19bbdecd8
|
@ -1,10 +1,17 @@
|
||||||
name: Tasmota CI
|
name: Tasmota CI
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
pull_request:
|
pull_request:
|
||||||
paths-ignore:
|
paths:
|
||||||
- '.github/**' # Ignore changes towards the .github directory
|
- '**.c'
|
||||||
- '**.md' # Do no build if *.md files changes
|
- '**.cpp'
|
||||||
|
- '**.h'
|
||||||
|
- '**.hpp'
|
||||||
|
- '**.ino'
|
||||||
|
- '**.json'
|
||||||
|
- '**.properties'
|
||||||
|
- 'pio-tools/*.py'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
tasmota:
|
tasmota:
|
||||||
|
|
|
@ -1,10 +1,17 @@
|
||||||
name: Tasmota ESP32 CI
|
name: Tasmota ESP32 CI
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
pull_request:
|
pull_request:
|
||||||
paths-ignore:
|
paths:
|
||||||
- '.github/**' # Ignore changes towards the .github directory
|
- '**.c'
|
||||||
- '**.md' # Do no build if *.md files changes
|
- '**.cpp'
|
||||||
|
- '**.h'
|
||||||
|
- '**.hpp'
|
||||||
|
- '**.ino'
|
||||||
|
- '**.json'
|
||||||
|
- '**.properties'
|
||||||
|
- 'pio-tools/*.py'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
tasmota32:
|
tasmota32:
|
||||||
|
|
Loading…
Reference in New Issue