fix(ci): resolve literal $(cat outdated.txt) in PR body#130
Closed
JerrettDavis wants to merge 1 commit intomainfrom
Closed
fix(ci): resolve literal $(cat outdated.txt) in PR body#130JerrettDavis wants to merge 1 commit intomainfrom
JerrettDavis wants to merge 1 commit intomainfrom
Conversation
The `with: body:` block in peter-evans/create-pull-request is YAML,
not shell — so $(cat outdated.txt) was rendered literally instead of
being expanded. Save the file content to a step output via GITHUB_OUTPUT
heredoc and reference it with ${{ steps.check.outputs.outdated }}.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Owner
Author
|
Superseded by #131 which removes the custom workflow entirely in favor of Dependabot groups. |
Contributor
Code Coverage |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #130 +/- ##
==========================================
+ Coverage 80.87% 88.61% +7.74%
==========================================
Files 61 61
Lines 3848 3848
Branches 558 470 -88
==========================================
+ Hits 3112 3410 +298
+ Misses 511 438 -73
+ Partials 225 0 -225
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
with: body:block inpeter-evans/create-pull-requestis YAML, not shell —$(cat outdated.txt)was rendered literally instead of being expanded.outdated.txtcontent to a step output via aGITHUB_OUTPUTheredoc (outdated<<EOF).${{ steps.check.outputs.outdated }}.Test plan
workflow_dispatchand confirm the generated PR body contains the actual package diff instead of the literal string$(cat outdated.txt).🤖 Generated with Claude Code