Skip to content

Commit

Permalink
fix: 이스케이프 문자 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
LeeJeongHooo committed Jun 24, 2024
1 parent 35c3b76 commit d9828e4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/slack-notification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ jobs:
{
attachments: [{
color: '${{ job.status }}' === 'success' ? 'good' : '${{ job.status }}' === 'failure' ? 'danger' : 'warning',
text: `Actor: ${process.env.AS_AUTHOR}\\n PR: ${process.env.AS_PULL_REQUEST}`,
text: `Actor: ${process.env.AS_AUTHOR}
PR: ${process.env.AS_PULL_REQUEST}`,
}]
}
env:
Expand Down Expand Up @@ -67,7 +68,8 @@ jobs:
{
attachments: [{
color: '${{ job.status }}' === 'success' ? 'good' : '${{ job.status }}' === 'failure' ? 'danger' : 'warning',
text: `${process.env.AS_PULL_REQUEST}에서 ${{ steps.filter_mentions.outputs.filtered_mentions }} 님을 언급했습니다.\\n꼭 나중에 들어가서 확인하기!\\n메시지: ${{ github.event.comment.body }}`,
text: `${process.env.AS_PULL_REQUEST}에서 ${{ steps.filter_mentions.outputs.filtered_mentions }} 님을 언급했습니다.
꼭 나중에 들어가서 확인하기!\\n메시지: ${{ github.event.comment.body }}`,
}]
}
env:
Expand Down

0 comments on commit d9828e4

Please sign in to comment.