Commit 6cf59c7
fix(pnpm-install): drop ${{ }} expression from description (#278)
The description line included a literal `\${{ secrets.GH_REGISTRY_TOKEN }}`
inside a backtick-quoted example. GitHub Actions evaluates `\${{ ... }}`
inside a composite action's `inputs.<name>.description` even though the
text isn't actually an expression context — and `secrets` is rejected
from inside an action file:
Unrecognized named-value: 'secrets'. Located at position 1 within
expression: secrets.GH_REGISTRY_TOKEN
That broke every consumer that picked up @main since the merge of #277.
Reword the description without an example expression, and switch to a
folded scalar so we don't accidentally include `\${{ }}` again.
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>1 parent d035277 commit 6cf59c7
1 file changed
Lines changed: 5 additions & 5 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
10 | | - | |
| 10 | + | |
11 | 11 | | |
12 | | - | |
| 12 | + | |
13 | 13 | | |
14 | 14 | | |
15 | | - | |
16 | | - | |
17 | | - | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
| |||
0 commit comments