From e3f9ba3f1509643c47fb6f23f906b6a67fbf2931 Mon Sep 17 00:00:00 2001 From: Dominic Saadi Date: Thu, 7 Mar 2024 14:14:13 +0100 Subject: [PATCH] chore(release): add author to changelog template --- .github/actions/check_changelog/check_changelog.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/check_changelog/check_changelog.mjs b/.github/actions/check_changelog/check_changelog.mjs index 47d4c5be5bba..e971928c5171 100644 --- a/.github/actions/check_changelog/check_changelog.mjs +++ b/.github/actions/check_changelog/check_changelog.mjs @@ -43,7 +43,7 @@ async function main() { '```', "## Unreleased", '', - " - PR title (#PR number)", + " - PR title (#PR number) by @PR author", '', " Body...", '```', @@ -55,7 +55,7 @@ async function main() { "Here are your PR's title, number, and body as a starting point:", '', '```', - `- ${pr.title} (#${pr.number})`, + `- ${pr.title} (#${pr.number}) by @${pr.user.login}`, '', ` ${pr.body}`, '```',