-
Notifications
You must be signed in to change notification settings - Fork 1
33 lines (28 loc) · 981 Bytes
/
Copy pathdocs-checks.yml
File metadata and controls
33 lines (28 loc) · 981 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Docs Checks
# Guenstige, abhaengigkeitsfreie Doku-Pruefung: tote interne Links und UTF-8.
#
# Seit D-076 ohne Node/Ajv und ohne Kopplung an den schlafenden Gate-Apparat.
# Der Job ist als Required Check konfiguriert und hat deshalb bewusst keinen
# Pfadfilter: ein manchmal fehlender Required Check blockiert PRs.
on:
pull_request:
push:
branches: [main]
# Handstart auf beliebigem Branch: gh workflow run "Docs Checks" --ref <branch>
# Laeuft dann ohne Pfadfilter - wer von Hand startet, will pruefen.
workflow_dispatch:
permissions:
contents: read
concurrency:
group: docs-checks-${{ github.ref }}
cancel-in-progress: true
jobs:
docs-check:
name: docs-check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4.4.0
with:
persist-credentials: false
- name: Interne Doku-Links pruefen (tote Links = Fehler)
run: python3 .github/scripts/check_docs.py