Commit 2e09a16b7 for imagemagick.org

commit 2e09a16b795caff2c3b0662b143ff9cd3ad2b1a1
Author: Dirk Lemstra <dirk@lemstra.org>
Date:   Sun Jul 5 21:00:16 2026 +0200

    Make sure git is configured properly when updating the website.

diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index dd4cf9cbc..88fffb70a 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -709,6 +709,11 @@ jobs:
         run: |
           mv ChangeLog.md docs/changelog/index.md

+      - name: Configure git
+        run: |
+          git config --global user.name '${{steps.app-token.outputs.app-slug}}[bot]'
+          git config --global user.email '${{vars.APP_USER_ID}}+${{steps.app-token.outputs.app-slug}}[bot]@users.noreply.github.com'
+
       - name: Update website version
         env:
           VERSION: ${{needs.version.outputs.version}}