Skip to content

Commit

Permalink
iteration on how the reply of /build is constructed
Browse files Browse the repository at this point in the history
Signed-off-by: lucasew <[email protected]>
  • Loading branch information
lucasew committed Dec 21, 2024
1 parent a26aa6a commit e8a7324
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/api/telegram/+server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export async function POST(event) {
try {
const buildArgs = parseBuildArgs(args, for_user)
const workflow = await methods.launchWorkflow(buildArgs)
await methods.telegramReply("launched review with args 👍\n```\n" + JSON.stringify(buildArgs) + "\n```\n\n" + workflow)
await methods.telegramReply(`launched [review](${workflow}) 👍\n\`\`\`\n${JSON.stringify(buildArgs, null, 2)}\n\`\`\``)
} catch (error) {
handleError(error)
await methods.telegramReply("error handling the /build command: " + error.message)
Expand Down

0 comments on commit e8a7324

Please sign in to comment.