From 92096f6d013abf1eebfcc103cce348fccfdb69dc Mon Sep 17 00:00:00 2001 From: novice0840 Date: Tue, 31 Dec 2024 17:28:01 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20=EB=A9=94=EC=84=B8=EC=A7=80?= =?UTF-8?q?=EC=97=90=20Issue=20=EB=AC=B8=EC=9E=90=EC=97=B4=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80=20#443?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/progress-alarm.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/progress-alarm.yml b/.github/workflows/progress-alarm.yml index b5075e49..3e08add1 100644 --- a/.github/workflows/progress-alarm.yml +++ b/.github/workflows/progress-alarm.yml @@ -66,9 +66,9 @@ jobs: if (commitCount === 0) continue; if (commitSummary[nickname]) { - commitSummary[nickname].push(`${prTitle}: 커밋 수: ${commitCount}`); + commitSummary[nickname].push(`Issue: ${prTitle}: ${commitCount} commit`); } else { - commitSummary[nickname] = [`${prTitle}: 커밋 수: ${commitCount}`]; + commitSummary[nickname] = [`Issue: ${prTitle}: ${commitCount} commit`]; } } @@ -78,7 +78,7 @@ jobs: }); if (messageList.length === 0) { - console.log('오늘의 커밋이 없습니다.'); + console.log('오늘의 commit이 없습니다.'); return; } @@ -92,7 +92,7 @@ jobs: method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ - content: `🍀 {formattedDate} 진행 상황 공유 🍀\n\n${messageList.join('\n\n')}`, + content: `🍀 ${formattedDate} 진행 상황 공유 🍀\n\n${messageList.join('\n\n')}`, }), });