From ecfe79063fd39105e7ef168efaca6b46c350f143 Mon Sep 17 00:00:00 2001 From: Nicolas DUBIEN Date: Fri, 1 Nov 2024 16:34:52 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Proper=20commit=20name=20on=20ch?= =?UTF-8?q?angelogs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/scripts/generate-changelog.cjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/scripts/generate-changelog.cjs b/.github/workflows/scripts/generate-changelog.cjs index d52da887273..b41633a0251 100644 --- a/.github/workflows/scripts/generate-changelog.cjs +++ b/.github/workflows/scripts/generate-changelog.cjs @@ -293,7 +293,7 @@ async function run() { // Create another branch and commit on it const branchName = `changelog-${Math.random().toString(16).substring(2)}`; - const commitName = `🔖 Update CHANGELOG.md for ${allBumps.map((b) => `${b.ident}@${b.newVersion}`).join(', ')}`; + const commitName = `🔖 Update CHANGELOG.md for ${allBumps.map((b) => `${b.name}@${b.newVersion}`).join(', ')}`; await execFile('git', ['checkout', '-b', branchName]); await execFile('git', ['commit', '-m', commitName]); await execFile('git', ['push', '--set-upstream', 'origin', branchName]);