Commit 297f8cb
Fix releasenotes (#1543)
* fix: correct YAML indentation in update-releasenotes workflow
The Python heredoc content was at column 1, which broke out of the
YAML block scalar for the 'run' key. Indented the heredoc body to
align with the run block so YAML parses it correctly. The block
scalar automatically strips the common indentation, so Python
receives the code without extra leading spaces.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
* fix: export shell variables for python subprocess in release notes workflow
FILE and VERSION_HEADER were plain shell variables, invisible to the
python3 heredoc subprocess via os.environ. Adding 'export' fixes the
KeyError.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
---------
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>1 parent ee6ea6d commit 297f8cb
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
60 | 60 | | |
61 | 61 | | |
62 | 62 | | |
63 | | - | |
64 | | - | |
| 63 | + | |
| 64 | + | |
65 | 65 | | |
66 | 66 | | |
67 | 67 | | |
| |||
0 commit comments