Skip to content

Commit ec0b3ae

Browse files
committed
remove some debug info
1 parent e836f97 commit ec0b3ae

6 files changed

Lines changed: 2 additions & 11 deletions

File tree

lib/actions-util.js

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/actions-util.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/upload-lib.js

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/upload-lib.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/actions-util.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,15 +132,12 @@ export const determineMergeBaseCommitOid = async function (): Promise<
132132
}
133133
).exec();
134134

135-
core.info("commitOid="+commitOid+" baseOid="+baseOid+" headOid="+headOid); //TODO remove debug line
136-
137135
// Let's confirm our assumptions: We had a merge commit and the parsed parent data looks correct
138136
if (
139137
commitOid === mergeSha &&
140138
headOid.length === 40 &&
141139
baseOid.length === 40
142140
) {
143-
core.info("Returning " + baseOid); // TODO remove debug line
144141
return baseOid;
145142
}
146143
return undefined;

src/upload-lib.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -338,8 +338,6 @@ export function buildPayload(
338338
}
339339
}
340340
}
341-
core.info("Using base ref: " + payloadObj.base_ref);
342-
core.info("USing base sha: " + payloadObj.base_sha);
343341
return payloadObj;
344342
} else {
345343
return {

0 commit comments

Comments
 (0)