ci: run CI for changes to microsite/data/
The paths-ignore for microsite/** was also skipping CI for changes to microsite/data/plugins/, which is where the plugin directory YAML files live. This meant the verify plugin directory step never ran for the files it was supposed to validate. Switch from paths-ignore to paths with negation so that microsite/data/ changes still trigger CI while other microsite changes remain excluded. Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
@@ -6,6 +6,7 @@ on:
|
||||
pull_request:
|
||||
paths:
|
||||
- 'microsite/**'
|
||||
- '!microsite/data/**'
|
||||
- 'beps/**'
|
||||
|
||||
permissions:
|
||||
|
||||
@@ -2,9 +2,11 @@ name: CI
|
||||
on:
|
||||
# NOTE: If you change these you must update ci-noop.yml as well
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- 'microsite/**'
|
||||
- 'beps/**'
|
||||
paths:
|
||||
- '**'
|
||||
- '!microsite/**'
|
||||
- 'microsite/data/**'
|
||||
- '!beps/**'
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
|
||||
Reference in New Issue
Block a user