mirror of
https://github.com/actions/checkout.git
synced 2025-03-31 05:20:06 +02:00
fix ref for pr closed event when a pr is merged
This commit is contained in:
parent
db41740e12
commit
25be3b7155
1 changed files with 6 additions and 0 deletions
|
@ -61,6 +61,12 @@ export function getInputs(): ISourceSettings {
|
||||||
if (isWorkflowRepository) {
|
if (isWorkflowRepository) {
|
||||||
result.ref = github.context.ref
|
result.ref = github.context.ref
|
||||||
result.commit = github.context.sha
|
result.commit = github.context.sha
|
||||||
|
|
||||||
|
// Some events have an unqualifed ref. For example when a PR is merged (pull_request closed event),
|
||||||
|
// the ref is unqualifed like "master" instead of "refs/heads/master".
|
||||||
|
if (result.commit && result.ref && !result.ref.startsWith('refs/')) {
|
||||||
|
result.ref = `refs/heads/${result.ref}`
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!result.ref && !result.commit) {
|
if (!result.ref && !result.commit) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue