diff --git a/scripts/update-changelog.ts b/scripts/update-changelog.ts index 75289b7e2c..1a50320d33 100644 --- a/scripts/update-changelog.ts +++ b/scripts/update-changelog.ts @@ -18,6 +18,8 @@ async function main () { // Create and push a branch with bumped versions if it has not already been created const branchExists = execSync(`git ls-remote --heads origin v${newVersion}`).toString().trim().length > 0 if (!branchExists) { + execSync('git config --global user.email "daniel@roe.dev"') + execSync('git config --global user.name "Daniel Roe"') execSync(`git checkout -b v${newVersion}`) for (const pkg of workspace.packages.filter(p => !p.data.private)) {