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:
Patrik Oldsberg
2026-02-25 23:35:46 +01:00
parent b2fda888ea
commit c482b2c385
2 changed files with 6 additions and 3 deletions
+1
View File
@@ -6,6 +6,7 @@ on:
pull_request:
paths:
- 'microsite/**'
- '!microsite/data/**'
- 'beps/**'
permissions:
+5 -3
View File
@@ -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 }}