fix(action.yml): stop evaluating secrets context in input description - #4
Merged
ralyodio merged 1 commit intoAug 19, 2026
Conversation
9 tasks
Contributor
Author
|
Status update: 11 merged test-case PRs now pending payout (#170-#180), and every /coinpay run still fails at 'Set up job' because of this single line. The fix is a one-line removal of the invalid default -- no behavior change, just makes the action loadable. Please merge so the queued payments can go through. |
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.
Every
/coinpayrun against this action fails at load time on all repos usingprofullstack/coinpaybot@v0:##[error]profullstack/coinpaybot/v0/action.yml (Line: 9, Col: 18): Unrecognized named-value: 'secrets'. Located at position 1 within expression: secrets.GITHUB_TOKENWhy
The
github-tokeninputdescriptionembeds a real expression:Usually {{ secrets.GITHUB_TOKEN }}.(single-braces in the source). GitHub Actions evaluates{{ }}sequences inside an action's inputdescriptionwhen loading the action, and thesecretscontext is not available there (onlyinputs,github,env,vars) - so the whole action fails to load and no/coinpayinvoice is ever created.Fix
Replace the literal expression with plain text (
the GITHUB_TOKEN secret.). Only the metadata string changes; runtime logic untouched,dist/index.jsunchanged.Impact
Unblocks every CoinPayPortal invoice command repo-wide - e.g.
profullstack/malware-test-prsruns #11-#16 all fail from this single line.