Commit 135c6ae
Fix investigate-security protocol mismatch breaking CI (#246)
* Fix investigate-security protocol mismatch breaking CI
Remove inline YAML comment from investigate-security.md frontmatter
that the lightweight YAML parsers were not stripping, causing
'exhaustive-path-tracing' to be parsed as
'exhaustive-path-tracing # optional — apply selectively to
parser/decoder functions'.
Also harden both validate-manifest.py and validate-graph-integrity.py
to strip inline YAML comments from list items, preventing similar
issues in the future.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
* Use re.split for YAML comment stripping to preserve # in values
Address PR review feedback: replace regex that treats any # as a
comment delimiter with re.split(r'\s+#', ...) which only strips #
when preceded by whitespace, matching YAML comment semantics.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
---------
Co-authored-by: Alan Jowett <alan.jowett@microsoft.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>1 parent 28a2f97 commit 135c6ae
3 files changed
Lines changed: 9 additions & 5 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
17 | | - | |
| 17 | + | |
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
78 | 78 | | |
79 | 79 | | |
80 | 80 | | |
81 | | - | |
82 | | - | |
83 | | - | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
84 | 85 | | |
85 | 86 | | |
86 | 87 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
47 | 47 | | |
48 | 48 | | |
49 | 49 | | |
50 | | - | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
51 | 54 | | |
52 | 55 | | |
53 | 56 | | |
| |||
0 commit comments