fix(workflows): remove ${{ }} from input description (load failure)#12
Merged
Conversation
…fails)
The previous commit's `digest:` input description included
\`\${{ needs.docker.outputs.digest }}\` as a literal usage example. GitHub
Actions evaluates \`\${{ }}\` expressions in EVERY string field of a
workflow file — including input descriptions — at workflow LOAD time,
before any jobs run. At load time, \`needs\` is not a defined context,
so GitHub rejects the workflow with:
Invalid workflow file: error parsing called workflow
(Line: 39, Col: 22): Unrecognized named-value: 'needs'.
Effect: every \`*-mcp\` release pipeline that pinned to c2d6fc8 had its
deploy job fail validation with 0 jobs run. Confirmed across all 8
fleet repos within ~15 minutes of the rollout.
Fix: rephrase the description in plain prose that doesn't include the
literal expression. The intent — pass the docker job's \`outputs.digest\` —
is now described in words, with the underlying \`steps.<id>.outputs.digest\`
also called out for completeness.
After this merge, every caller will need to bump its pinned SHA to the
new commit. That's mechanical and tracked in follow-up PRs across the
fleet.
This was referenced May 13, 2026
asachs01
added a commit
to wyre-technology/cipp-mcp
that referenced
this pull request
May 13, 2026
Previous pin c2d6fc8 had a workflow-load failure (${{ }} expression
in input description). New pin is the fixed version (wyre-technology/.github#12).
asachs01
added a commit
to wyre-technology/domotz-mcp
that referenced
this pull request
May 13, 2026
Previous pin c2d6fc8 had a workflow-load failure (${{ }} expression
in input description). New pin is the fixed version (wyre-technology/.github#12).
asachs01
added a commit
to wyre-technology/halopsa-mcp
that referenced
this pull request
May 13, 2026
Previous pin c2d6fc8 had a workflow-load failure (${{ }} expression
in input description). New pin is the fixed version (wyre-technology/.github#12).
asachs01
added a commit
to wyre-technology/autotask-mcp
that referenced
this pull request
May 13, 2026
Previous pin c2d6fc8 had a workflow-load failure (${{ }} expression
in input description). New pin is the fixed version (wyre-technology/.github#12).
asachs01
added a commit
to wyre-technology/itglue-mcp
that referenced
this pull request
May 13, 2026
Previous pin c2d6fc8 had a workflow-load failure (${{ }} expression
in input description). New pin is the fixed version (wyre-technology/.github#12).
asachs01
added a commit
to wyre-technology/liongard-mcp
that referenced
this pull request
May 13, 2026
Previous pin c2d6fc8 had a workflow-load failure (${{ }} expression
in input description). New pin is the fixed version (wyre-technology/.github#12).
asachs01
added a commit
to wyre-technology/datto-rmm-mcp
that referenced
this pull request
May 13, 2026
Previous pin c2d6fc8 had a workflow-load failure (${{ }} expression
in input description). New pin is the fixed version (wyre-technology/.github#12).
asachs01
added a commit
to wyre-technology/huntress-mcp
that referenced
this pull request
May 13, 2026
Previous pin c2d6fc8 had a workflow-load failure (${{ }} expression
in input description). New pin is the fixed version (wyre-technology/.github#12).
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.
The bug
Previous PR (#11) put a literal usage example
\${{ needs.docker.outputs.digest }}inside thedigest:input description. GitHub Actions evaluates\${{ }}expressions in every string field of a workflow file — descriptions included — at workflow load time, before any job runs.needsisn't defined in that context, so GitHub rejects the workflow:Impact
Every
*-mcprelease pipeline pinned to commitc2d6fc8(8 repos) failed validation with 0 jobs run on the first post-rollout release. Confirmed across autotask, halopsa, datto-rmm, itglue, huntress, liongard, domotz, cipp.Fix
Rephrase the description in plain prose that doesn't include a literal expression. After merge, fleet release.yml files get re-pinned to the new SHA — mechanical sweep tracked in follow-up PRs.
Test plan
python3 -c "import yaml; yaml.safe_load(open(...))"— parses\${{remaining inside anydescription:field