Fix GitHub Actions path filters w/ globs

This commit is contained in:
Scott Bezek 2023-07-09 17:40:41 -07:00
parent d1495a8334
commit 1e2b1983c2
3 changed files with 16 additions and 16 deletions

View File

@ -3,15 +3,15 @@ name: Export Electronics
on:
push:
paths:
- 'electronics'
- 'util'
- 'scripts'
- 'electronics/**'
- 'util/**'
- 'scripts/**'
- '.github/workflows/electronics.yml'
pull_request:
paths:
- 'electronics'
- 'util'
- 'scripts'
- 'electronics/**'
- 'util/**'
- 'scripts/**'
- '.github/workflows/electronics.yml'
jobs:

View File

@ -3,13 +3,13 @@ name: JS
on:
push:
paths:
- 'software/js'
- 'proto'
- 'software/js/**'
- 'proto/**'
- '.github/workflows/js.yml'
pull_request:
paths:
- 'software/js'
- 'proto'
- 'software/js/**'
- 'proto/**'
- '.github/workflows/js.yml'
workflow_dispatch:

View File

@ -3,16 +3,16 @@ name: PlatformIO CI
on:
push:
paths:
- 'firmware'
- 'proto'
- 'thirdparty/nanopb'
- 'firmware/**'
- 'proto/**'
- 'thirdparty/nanopb/**'
- 'platformio.ini'
- '.github/workflows/pio.yml'
pull_request:
paths:
- 'firmware'
- 'proto'
- 'thirdparty/nanopb'
- 'firmware/**'
- 'proto/**'
- 'thirdparty/nanopb/**'
- 'platformio.ini'
- '.github/workflows/pio.yml'