Merge pull request #215 from mmatotan/master

Optionally select the second element from array
This commit is contained in:
Phil 2023-05-25 19:05:31 +02:00 committed by GitHub
commit 731aed4287
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -179,7 +179,9 @@ const pkg = getPackageJson();
currentBranch = process.env.GITHUB_HEAD_REF; currentBranch = process.env.GITHUB_HEAD_REF;
isPullRequest = true; isPullRequest = true;
} else { } else {
currentBranch = /refs\/[a-zA-Z]+\/(.*)/.exec(process.env.GITHUB_REF)[1]; let regexBranch = /refs\/[a-zA-Z]+\/(.*)/.exec(process.env.GITHUB_REF);
// If GITHUB_REF is null then do not set the currentBranch
currentBranch = regexBranch ? regexBranch[1] : undefined;
} }
if (process.env['INPUT_TARGET-BRANCH']) { if (process.env['INPUT_TARGET-BRANCH']) {
// We want to override the branch that we are pulling / pushing to // We want to override the branch that we are pulling / pushing to