Skip to content

Commit 121b2c3

Browse files
committed
chore: run one-shot remaining module narrative consolidation
1 parent cd078ac commit 121b2c3

1 file changed

Lines changed: 42 additions & 0 deletions

File tree

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Consolidate remaining module headings
2+
3+
on:
4+
push:
5+
branches: [docs/module-narrative-continuity-wave2]
6+
paths:
7+
- "tools/scripts/_consolidate_remaining_module_headings.py"
8+
- ".github/workflows/consolidate-remaining-module-headings.yml"
9+
10+
permissions:
11+
contents: write
12+
13+
jobs:
14+
consolidate:
15+
runs-on: ubuntu-24.04
16+
steps:
17+
- uses: actions/checkout@v4
18+
with:
19+
ref: docs/module-narrative-continuity-wave2
20+
fetch-depth: 0
21+
- uses: actions/setup-python@v5
22+
with:
23+
python-version: "3.12"
24+
- name: Consolidate headings and validate semantics
25+
run: |
26+
python tools/scripts/_consolidate_remaining_module_headings.py
27+
python tools/scripts/verify_architecture_human_readability.py
28+
python tools/scripts/verify_architecture_semantic_alignment.py
29+
python tools/scripts/verify_docs_entrypoints.py
30+
python tools/scripts/verify_markdown_internal_links.py
31+
git diff --check
32+
- name: Commit narrative structure
33+
run: |
34+
if git diff --quiet; then
35+
echo "No consolidation changes needed."
36+
exit 0
37+
fi
38+
git config user.name "github-actions[bot]"
39+
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
40+
git add -A
41+
git commit -m "docs: consolidate remaining module narrative stages"
42+
git push origin HEAD:docs/module-narrative-continuity-wave2

0 commit comments

Comments
 (0)