From 5fab029bcf20bbbdbaa77563d9038865e8ac83a9 Mon Sep 17 00:00:00 2001 From: EthanMcManus Date: Fri, 30 Jan 2026 17:55:54 -0500 Subject: [PATCH] change the promotion thingy --- .github/workflows/promote_staging.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/promote_staging.yml b/.github/workflows/promote_staging.yml index 6e54088..3209371 100644 --- a/.github/workflows/promote_staging.yml +++ b/.github/workflows/promote_staging.yml @@ -52,7 +52,8 @@ jobs: - name: merge staging into main run: | git fetch origin staging - git merge --no-ff origin/staging -m "chore: promote staging to main" + git -c user.name="github-actions[bot]" -c user.email="github-actions[bot]@users.noreply.github.com" \ + merge --no-ff origin/staging -m "chore: promote staging to main" git push origin HEAD:main - name: setup python