From 735135efe9417c3f6cf65a499f52a2d6ae4b3814 Mon Sep 17 00:00:00 2001 From: Ralph Khreish <35776126+Crunchyman-ralph@users.noreply.github.com> Date: Sat, 3 May 2025 19:24:00 +0200 Subject: [PATCH] chore: allow github actions to commit --- .github/workflows/pre-release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pre-release.yml b/.github/workflows/pre-release.yml index 97233c20..0bab3820 100644 --- a/.github/workflows/pre-release.yml +++ b/.github/workflows/pre-release.yml @@ -42,6 +42,8 @@ jobs: - name: Version RC packages run: | + git config user.name "GitHub Actions" + git config user.email "github-actions@example.com" npx changeset version git add . git commit -m "chore: rc version bump" || echo "No changes to commit"