You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: mint the App token inside the pull-request job, not a separate one (#433)
#432's generate-token job passed its token to pull-request via
needs.generate-token.outputs.token. actions/create-github-app-token
masks its token output as a secret, and GitHub Actions silently empties
masked values when forwarded through a job's `outputs:` to a downstream
job ("Skip output 'token' since it may contain secret" in the run log)
— it only survives steps within the job that generated it.
Confirmed in signalwire/pricing-calculator: checkout failed with
"Input required and not supplied: token" even though Generate GitOps
PR token succeeded, because the forwarded value was empty.
Move the create-github-app-token step into the pull-request job itself
and reference steps.generate-token.outputs.token directly, instead of
a separate generate-token job.
0 commit comments