Skip to content

Commit

Permalink
chore(github/workflow): 리뷰어 선정 시 슬랙 알림 workflow 에러를 수정해요.
Browse files Browse the repository at this point in the history
  • Loading branch information
minseong0324 committed Jan 1, 2025
1 parent 391d49e commit 4d026cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pr-reviewer-noti.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
const mention = context.payload.pull_request.requested_reviewers.map((user) => {
const login = user.login;
const mappedValue = workers[login];
return mappedValue ? <@${mappedValue}> : No mapping found for ${login};
return mappedValue ? `<@${mappedValue}>` : `No mapping found for ${login}`;
});
return mention.join(', ');
result-encoding: string
Expand Down

0 comments on commit 4d026cc

Please sign in to comment.