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: paths-ignore:
- 'README.md' - 'README.md'
- 'docs/**' - 'docs/**'
- 'www/**'
pull_request: pull_request:
branches: [ '*' ] branches: [ '*' ]
paths-ignore: paths-ignore:
- 'README.md' - 'README.md'
- 'docs/**' - 'docs/**'
- 'www/**'
permissions: permissions:
contents: read contents: read

View File

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

View File

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