From e8631a29dfa8b877c3180d650b54f650d7e25207 Mon Sep 17 00:00:00 2001 From: jack shelton Date: Mon, 26 Aug 2024 12:55:43 -0500 Subject: [PATCH] fix: sync linear comment authir --- .github/scripts/sync-pr-to-linear.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/sync-pr-to-linear.ts b/.github/scripts/sync-pr-to-linear.ts index a9dd74a5..818e8a02 100644 --- a/.github/scripts/sync-pr-to-linear.ts +++ b/.github/scripts/sync-pr-to-linear.ts @@ -37,7 +37,7 @@ async function syncPrToLinear() { const commentBody = process.env.COMMENT_BODY; - const fullComment = `@[${process.env.COMMENT_AUTHOR}](${process.env.COMMENT_AUTHOR_PROFILE}): ${commentBody}`; + const fullComment = `[@${process.env.COMMENT_AUTHOR}](${process.env.COMMENT_AUTHOR_PROFILE}): ${commentBody}`; const createdComment = await linearClient.createComment({ issueId: existingIssue.id,