ci: exclude main and release/* branches from docs-check and licence-check workflows
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
+2 -2
View File
@@ -2,12 +2,12 @@ name: Docs Check
on: on:
push: push:
branches: ["**"] branches: ["**", "!main", "!release/**"]
paths: paths:
- "**.md" - "**.md"
- ".gitea/workflows/docs-check.yml" - ".gitea/workflows/docs-check.yml"
pull_request: pull_request:
branches: ["**"] branches: ["**", "!main", "!release/**"]
paths: paths:
- "**.md" - "**.md"
- ".gitea/workflows/docs-check.yml" - ".gitea/workflows/docs-check.yml"
+2 -2
View File
@@ -2,13 +2,13 @@ name: Licence Check
on: on:
push: push:
branches: ["**"] branches: ["**", "!main", "!release/**"]
paths: paths:
- "package.json" - "package.json"
- "package-lock.json" - "package-lock.json"
- ".gitea/workflows/licence-check.yml" - ".gitea/workflows/licence-check.yml"
pull_request: pull_request:
branches: ["**"] branches: ["**", "!main", "!release/**"]
paths: paths:
- "package.json" - "package.json"
- "package-lock.json" - "package-lock.json"