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')}`, }), });