You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: write highlights to /tmp/gh-aw/agent/ for artifact collection
Write highlights to /tmp/gh-aw/agent/release-highlights.md which is
automatically collected in the agent artifact. No safe outputs needed
for file storage — just shell write + noop. Release workflow downloads
the agent artifact to get the file.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Copy file name to clipboardExpand all lines: .github/workflows/release-highlights.md
+5-6Lines changed: 5 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -90,23 +90,22 @@ Dependency updates and internal improvements to keep things running smoothly.
90
90
91
91
### 5. Save Highlights
92
92
93
-
**CRITICAL**: Write the highlights to a file using shell. This is how you save your output:
93
+
**CRITICAL**: Write the highlights to `/tmp/gh-aw/agent/release-highlights.md`using shell. This path is automatically collected as a workflow artifact.
Write the file to `/tmp/gh-aw/release-highlights.md`. This path is automatically collected as a workflow artifact. After writing the file, call `noop` and stop.
104
-
103
+
After writing the file, call `noop` and stop:
105
104
```
106
-
safeoutputs/noop(message="Release highlights written to /tmp/gh-aw/release-highlights.md")
105
+
safeoutputs/noop(message="Release highlights saved to /tmp/gh-aw/agent/release-highlights.md")
107
106
```
108
107
109
108
**❌ DO NOT:**
109
+
- Call any tool after noop
110
110
- Investigate how safe outputs work internally
111
111
- Explore the workflow's lock.yml or CJS files
112
-
- Call any tool after writing the file and calling noop
0 commit comments