Commit 27cea89
committed
fix(action): remove ${{ github.action_path }} literal from input description
GitHub Actions' template parser evaluates expressions inside input
`description` blocks and rejects the `github` context there
(only `inputs`, `env`, etc. are allowed in input metadata).
The literal `${{ github.action_path }}` in the version input's
description tripped: 'Unrecognized named-value: github' and bricked
the entire action-selftest workflow with 'Failed to load action.yml'.
Reworded the description to refer to the install path in plain prose;
the actual `pip install -e "${{ github.action_path }}"` call in
the runs.steps block (where it IS allowed) is unchanged.1 parent 728aee6 commit 27cea89
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
35 | | - | |
| 35 | + | |
36 | 36 | | |
37 | 37 | | |
38 | 38 | | |
| |||
0 commit comments