diff --git a/src/bot/features/commands/shared/task-creation.ts b/src/bot/features/commands/shared/task-creation.ts index 7c1831d..cf46a5b 100644 --- a/src/bot/features/commands/shared/task-creation.ts +++ b/src/bot/features/commands/shared/task-creation.ts @@ -183,7 +183,7 @@ async function createTask(taskToCreate: string, ctx: GrammyContext, { owner, rep return await ctx.reply("Failed to create task"); } - return await ctx.reply(`${fullSpec}\n\n ${owner}/${repo}`); + return await ctx.reply(`${fullSpec}\n\n [View on GitHub](${task.data.html_url})`); } export { composer as newTaskFeature };