ci: exclude main and release/* branches from docs-check and licence-check workflows
All checks were successful
Build and Push Docker Image / build (push) Successful in 37s
CI / Security audit (push) Successful in 1m5s
CI / Tests & coverage (push) Successful in 1m12s
Docs Check / Markdown lint (push) Successful in 30s
Docs Check / Mermaid diagram parse check (push) Successful in 1m32s
Licence Check / Dependency licence compatibility (push) Successful in 59s
CI / Security audit (pull_request) Successful in 1m5s
CI / Tests & coverage (pull_request) Successful in 1m10s

This commit is contained in:
2026-05-17 20:20:17 +01:00
parent cc4f420482
commit ad024ab87b
2 changed files with 4 additions and 4 deletions

View File

@@ -2,12 +2,12 @@ name: Docs Check
on:
push:
branches: ["**"]
branches: ["**", "!main", "!release/**"]
paths:
- "**.md"
- ".gitea/workflows/docs-check.yml"
pull_request:
branches: ["**"]
branches: ["**", "!main", "!release/**"]
paths:
- "**.md"
- ".gitea/workflows/docs-check.yml"

View File

@@ -2,13 +2,13 @@ name: Licence Check
on:
push:
branches: ["**"]
branches: ["**", "!main", "!release/**"]
paths:
- "package.json"
- "package-lock.json"
- ".gitea/workflows/licence-check.yml"
pull_request:
branches: ["**"]
branches: ["**", "!main", "!release/**"]
paths:
- "package.json"
- "package-lock.json"