From 5ddc21d50084d882846b33dc49d8d39e97b534b3 Mon Sep 17 00:00:00 2001 From: Christophe Dervieux Date: Wed, 8 May 2024 18:05:17 +0200 Subject: [PATCH] [gha] username and email needs to be configured on git --- .github/workflows/update-downloads.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/update-downloads.yml b/.github/workflows/update-downloads.yml index c80bda30c..d828ee881 100644 --- a/.github/workflows/update-downloads.yml +++ b/.github/workflows/update-downloads.yml @@ -42,6 +42,8 @@ jobs: id: cherry-pick-prerelease if: ${{ steps.auto-commit.outputs.changes_detected == 'true' }} run: | + git config --global user.name 'github-actions[bot]' + git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com' git checkout prerelease git cherry-pick ${{ steps.auto-commit.outputs.commit_hash }} git push origin prerelease