Skip to content

Commit 954da59

Browse files
SimplicityGuyclaude
andcommitted
fix(ci): populate PR body in update-dependencies workflow
- Set `output` step output from update-output.txt so the full update output appears in the PR details section - Set `summary` step output from summary.txt so the update summary appears in the PR body - Fix `uv pip audit` → `uv run pip-audit` in PR review instructions Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent f6ae236 commit 954da59

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

.github/workflows/update-dependencies.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,11 @@ jobs:
7474
7575
# Save output for PR body
7676
echo "$OUTPUT" > update-output.txt
77+
{
78+
echo "output<<ENDOFOUTPUT"
79+
echo "$OUTPUT"
80+
echo "ENDOFOUTPUT"
81+
} >> "$GITHUB_OUTPUT"
7782
7883
# Check if changes were made
7984
if git diff --quiet; then
@@ -116,6 +121,11 @@ jobs:
116121
117122
# Save summary for PR body
118123
echo "$SUMMARY" > summary.txt
124+
{
125+
echo "summary<<ENDOFSUMMARY"
126+
echo "$SUMMARY"
127+
echo "ENDOFSUMMARY"
128+
} >> "$GITHUB_OUTPUT"
119129
120130
- name: 📝 Create Pull Request
121131
if: steps.update.outputs.no_changes != 'true'
@@ -158,7 +168,7 @@ jobs:
158168
```
159169
4. **Review security advisories**:
160170
```bash
161-
uv pip audit
171+
uv run pip-audit
162172
```
163173
164174
### 📝 Notes

0 commit comments

Comments
 (0)