Skip to content

Commit

Permalink
fix: correct formatting in error comment
Browse files Browse the repository at this point in the history
Adjusted the error comment formatting to properly display code block.
  • Loading branch information
gentlementlegen committed Oct 15, 2024
1 parent 692a93c commit 3de9722
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ export async function run(context: CommandContext) {
context.logger.fatal("Commander error", { e });
await octokit.rest.issues.createComment({
body: `\`\`\`
Failed to run command-query-user.
${e.message}
Failed to run command-query-user.
${e.message}
${commandParser.helpInformation()}
\`\`\``,
${commandParser.helpInformation()}
\`\`\``,
owner: context.payload.repository.owner.login,
repo: context.payload.repository.name,
issue_number: context.payload.issue.number,
Expand Down

0 comments on commit 3de9722

Please sign in to comment.