Optionally select the second element from array, fixes #214

This commit is contained in:
mmatotan 2023-05-25 15:58:26 +02:00
parent 967250ec79
commit a5a0a45931
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
@ -229,7 +231,7 @@ const pkg = getPackageJson();
} catch (e) { } catch (e) {
console.warn( console.warn(
'git commit failed because you are using "actions/checkout@v2" or later; ' + 'git commit failed because you are using "actions/checkout@v2" or later; ' +
'but that doesnt matter because you dont need that git commit, thats only for "actions/checkout@v1"', 'but that doesnt matter because you dont need that git commit, thats only for "actions/checkout@v1"',
); );
} }