ci: exclude main and release/* branches from docs-check and licence-check workflows
Some checks failed
Build and Push Docker Image / build (push) Has been cancelled
CI / Security audit (push) Has been cancelled
CI / Tests & coverage (push) Has been cancelled

This commit was merged in pull request #12.
This commit is contained in:
2026-05-17 20:20:17 +01:00
committed by Gandalf
parent e45c566fd7
commit fb719141fa
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"