Skip to content

Commit ec0b3ae

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

File tree

6 files changed

+2
-11
lines changed

6 files changed

+2
-11
lines changed

Diff for: lib/actions-util.js

-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: lib/actions-util.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: lib/upload-lib.js

-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: lib/upload-lib.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: src/actions-util.ts

-3
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;

Diff for: src/upload-lib.ts

-2
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)