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
Pull Requests from forks/outside contributors (not sure which) don't trigger the right pull in get_pull_request_ref action. In particular, look at the code here:
Later, we explicitly call fromJson(steps.get_pull_request_ref.outputs.data).head.ref as the output of this step, which will just get the ref for master. We need to find a way to reference the ref of the forking repo.
Pull Requests from forks/outside contributors (not sure which) don't trigger the right pull in
get_pull_request_ref
action. In particular, look at the code here:Later, we explicitly call
fromJson(steps.get_pull_request_ref.outputs.data).head.ref
as the output of this step, which will just get the ref for master. We need to find a way to reference the ref of the forking repo.Play around with the first solution suggested here:
actions/checkout#455
this might be useful:
https://github.blog/2020-08-03-github-actions-improvements-for-fork-and-pull-request-workflows/
The text was updated successfully, but these errors were encountered: