mirror of
https://code.forgejo.org/actions/checkout
synced 2025-04-22 00:33:53 +08:00
fix ref for pr closed event when a pr is merged (#141)
This commit is contained in:
parent
db41740e12
commit
090d9c9dfd
3 changed files with 25 additions and 0 deletions
5
dist/index.js
vendored
5
dist/index.js
vendored
|
@ -12757,6 +12757,11 @@ function getInputs() {
|
|||
if (isWorkflowRepository) {
|
||||
result.ref = github.context.ref;
|
||||
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) {
|
||||
result.ref = 'refs/heads/master';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue