Skip to content

Commit bf7a502

Browse files
committed
chore: try this
1 parent 95127f0 commit bf7a502

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/git.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,14 @@ export function getBaseRef(): string {
2424
const inputBaseRef = core.getInput('base-ref');
2525

2626
if (inputBaseRef) {
27+
core.info('Found input base ref: ' + inputBaseRef);
2728
return inputBaseRef.includes('/') ? inputBaseRef : `origin/${inputBaseRef}`;
2829
}
2930

3031
const githubBaseRef = github.context.payload.pull_request?.base.ref;
3132

3233
if (githubBaseRef) {
34+
core.info('Found github base ref: ' + githubBaseRef);
3335
return `origin/${githubBaseRef}`;
3436
}
3537

0 commit comments

Comments
 (0)