ci: skip app CI workflows for www-only changes

Add www/** to paths-ignore in astro-build-test, e2e-tests, and
nix-build workflows. docker-build and helm-test already use positive
path filters and were unaffected.
This commit is contained in:
Arunavo Ray
2026-03-02 16:25:54 +05:30
parent 534150ecf9
commit e68e9c38a8
3 changed files with 12 additions and 0 deletions

View File

@@ -6,11 +6,13 @@ on:
paths-ignore:
- 'README.md'
- 'docs/**'
- 'www/**'
pull_request:
branches: [ '*' ]
paths-ignore:
- 'README.md'
- 'docs/**'
- 'www/**'
permissions:
contents: read

View File

@@ -8,6 +8,7 @@ on:
- "docs/**"
- "CHANGELOG.md"
- "LICENSE"
- "www/**"
pull_request:
branches: ["*"]
paths-ignore:
@@ -15,6 +16,7 @@ on:
- "docs/**"
- "CHANGELOG.md"
- "LICENSE"
- "www/**"
workflow_dispatch:
inputs:
debug_enabled:

View File

@@ -5,8 +5,16 @@ on:
branches: [main, nix]
tags:
- 'v*'
paths-ignore:
- 'README.md'
- 'docs/**'
- 'www/**'
pull_request:
branches: [main]
paths-ignore:
- 'README.md'
- 'docs/**'
- 'www/**'
permissions:
contents: read