We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95127f0 commit bf7a502Copy full SHA for bf7a502
src/git.ts
@@ -24,12 +24,14 @@ export function getBaseRef(): string {
24
const inputBaseRef = core.getInput('base-ref');
25
26
if (inputBaseRef) {
27
+ core.info('Found input base ref: ' + inputBaseRef);
28
return inputBaseRef.includes('/') ? inputBaseRef : `origin/${inputBaseRef}`;
29
}
30
31
const githubBaseRef = github.context.payload.pull_request?.base.ref;
32
33
if (githubBaseRef) {
34
+ core.info('Found github base ref: ' + githubBaseRef);
35
return `origin/${githubBaseRef}`;
36
37
0 commit comments