Skip to content

Commit

Permalink
Merge pull request #194 from jaymecd/patch-1
Browse files Browse the repository at this point in the history
fix(actions) - expose correct variable name for branch name
  • Loading branch information
localheinz authored Jun 15, 2024
2 parents fb04508 + 7a33b90 commit 13fefb5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ runs:
if (context.eventName == 'workflow_run') {
core.exportVariable("PULL_REQUEST_NUMBER", context.payload.workflow_run.pull_requests[0].number);
core.exportVariable("PULL_REQUEST_NUMBER", context.payload.workflow_run.pull_requests[0].head.ref);
core.exportVariable("PULL_REQUEST_BRANCH_NAME", context.payload.workflow_run.pull_requests[0].head.ref);
return;
}
Expand Down

0 comments on commit 13fefb5

Please sign in to comment.