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
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- '.github/**' # Ignore changes towards the .github directory
|
||||
- '**.md' # Do no build if *.md files changes
|
||||
paths:
|
||||
- '**.c'
|
||||
- '**.cpp'
|
||||
- '**.h'
|
||||
- '**.hpp'
|
||||
- '**.ino'
|
||||
- '**.json'
|
||||
- '**.properties'
|
||||
- 'pio-tools/*.py'
|
||||
|
||||
jobs:
|
||||
tasmota:
|
||||
|
|
|
@ -1,10 +1,17 @@
|
|||
name: Tasmota ESP32 CI
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- '.github/**' # Ignore changes towards the .github directory
|
||||
- '**.md' # Do no build if *.md files changes
|
||||
paths:
|
||||
- '**.c'
|
||||
- '**.cpp'
|
||||
- '**.h'
|
||||
- '**.hpp'
|
||||
- '**.ino'
|
||||
- '**.json'
|
||||
- '**.properties'
|
||||
- 'pio-tools/*.py'
|
||||
|
||||
jobs:
|
||||
tasmota32:
|
||||
|
|
Loading…
Reference in New Issue