Skip to content
This repository was archived by the owner on Nov 14, 2025. It is now read-only.

Commit da2c8f6

Browse files
authored
Add '@' mention for issue author in triage comments to enhance clarity (#346)
1 parent 1d4ad3a commit da2c8f6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

triage/index.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

triage/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ class IssueTriageAction extends Action {
2424
const link = getInput('workingAreasLink');
2525
if (link) {
2626
await issue.postComment(
27-
`Hi ${githubIssue.author.name}. As a member of the team, you can help us triage this issue by referring to ${link}`,
27+
`Hi @${githubIssue.author.name}. As a member of the team, you can help us triage this issue by referring to ${link}`,
2828
);
2929
} else {
3030
await issue.postComment(
31-
`Hi ${githubIssue.author.name}. You can help us triage this issue by assigning it to the appropriate person.`,
31+
`Hi @${githubIssue.author.name}. You can help us triage this issue by assigning it to the appropriate person.`,
3232
);
3333
}
3434
}

0 commit comments

Comments
 (0)