We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32e7aab commit ab22a9bCopy full SHA for ab22a9b
1 file changed
lib/ci-helper.ts
@@ -858,9 +858,9 @@ export class CIHelper {
858
const pullRequestURL = `https://github.com/${repositoryOwner}/${
859
this.config.repo.name
860
}/pull/${comment.prNumber}`;
861
- console.log(
862
- `Handling command ${command} with argument ${argument} at ${pullRequestURL}#issuecomment-${commentID}`,
863
- );
+ const arg = argument ? ` with argument ${argument}` : "";
+ const at = `${pullRequestURL}#issuecomment-${commentID}`;
+ console.log(`Handling command ${command}${arg} at ${at}`);
864
865
const addComment = async (body: string): Promise<void> => {
866
const redacted = CIHelper.redactGitHubToken(body);
0 commit comments