fix(invite-gate): drop ${{ }} from input description so workflow parses - #86
Merged
AquiGorka merged 3 commits intoMay 7, 2026
Merged
Conversation
GitHub evaluates ${{ }} expressions inside workflow_call.inputs.*.description
at workflow-load time, where the github context isn't available. That made
the entire reusable workflow invalid, so every caller (moonlight-pay,
provider-console, council-console, etc.) failed in 0s with "no jobs were run"
since 2026-04-22 — invite-gate has never actually executed.
Replace the embedded expression with prose; description still conveys intent.
The Playwright suite expects ./playwright/freighter-extension/ to be an unpacked Chromium extension. The directory is gitignored — devs populate it locally by copying from their Chrome install. CI had nothing there, so chromium hung trying to --load-extension a missing path and every test timed out at 180s on browser launch. Build from source against tag 5.39.0 (matches what's installed locally right now) and cache the build dir keyed on the tag, so subsequent runs skip the ~3-5min yarn build. Pinning (rather than "latest") keeps a Freighter release from silently breaking invite-gate.
Freighter pins "packageManager": "yarn@4.10.0", and `yarn install` errors out against the runner's global yarn 1.22.22. corepack enable activates the pinned version. Also switch --frozen-lockfile to --immutable (yarn 4 spelling).
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
${{ github.head_ref }}embedded inworkflow_call.inputs.local_dev_ref.descriptionis evaluated at workflow-load time, but thegithubcontext isn't available there. GitHub rejects the file withUnrecognized named-value: 'github', so the entire reusable workflow is invalid and every caller fails before scheduling a job.moonlight-pay,provider-console,council-console,local-dev's own caller, etc. has failed in 0s withreferenced_workflows: []since 2026-04-22 — invite-gate has never actually run.Test plan