Commit 65ece56
committed
fix(ci): repair two workflow startup_failures (invalid YAML indentation)
Two workflows in .github/workflows/ were YAML-invalid, so GitHub failed to
compile them on every push to main (startup_failure, 0 jobs) — GitHub compiles
all workflow files on push, so even the workflow_call-only changelog-reusable
produced a failed push run.
- boj-build.yml: two trailing steps (K9-SVC Validation, Contractile Check) had
dropped to 2-space indentation, out of the 'steps:' list — re-indented to 6
spaces so they are valid steps under trigger-boj. (Addresses standards#331
'repair or retire boj-build.yml' on the repair side.) The job stays gated on
'if: vars.BOJ_SERVER_URL != ...', so it skips cleanly when unconfigured.
- changelog-reusable.yml: two multi-line strings (a git commit message and a
gh pr --body) had continuation lines at column 0, falling out of their
'run: |' block scalars. Rewritten as multiple -m flags / a single-line body
so the block scalar stays valid. Once valid, GitHub correctly treats the file
as workflow_call-only and no longer spawns a failed push run.
Both validated locally with PyYAML; all 28 workflows now parse. No SPDX header
or licence content touched.
https://claude.ai/code/session_011xv3VLrqeXkpjXxUojKz821 parent aa665ac commit 65ece56
2 files changed
Lines changed: 33 additions & 37 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
47 | 47 | | |
48 | 48 | | |
49 | 49 | | |
50 | | - | |
51 | | - | |
52 | | - | |
53 | | - | |
54 | | - | |
55 | | - | |
56 | | - | |
57 | | - | |
58 | | - | |
59 | | - | |
60 | | - | |
61 | | - | |
62 | | - | |
63 | | - | |
64 | | - | |
65 | | - | |
66 | | - | |
67 | | - | |
68 | | - | |
69 | | - | |
70 | | - | |
71 | | - | |
72 | | - | |
73 | | - | |
74 | | - | |
75 | | - | |
76 | | - | |
77 | | - | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
145 | 145 | | |
146 | 146 | | |
147 | 147 | | |
148 | | - | |
149 | | - | |
150 | | - | |
151 | | - | |
152 | | - | |
153 | | - | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
154 | 152 | | |
155 | 153 | | |
156 | 154 | | |
| |||
174 | 172 | | |
175 | 173 | | |
176 | 174 | | |
177 | | - | |
178 | | - | |
179 | | - | |
| 175 | + | |
180 | 176 | | |
181 | 177 | | |
182 | 178 | | |
| |||
0 commit comments