From 52f57af97e9bb1839feec0acc2b8e0d2aa80a951 Mon Sep 17 00:00:00 2001 From: Thomas Weber Date: Tue, 7 Jan 2025 17:31:55 -0600 Subject: [PATCH] Fix download translations workflow identity (#1845) --- .github/workflows/download-translations.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/download-translations.yml b/.github/workflows/download-translations.yml index b9a6eb94a3..db140b423d 100644 --- a/.github/workflows/download-translations.yml +++ b/.github/workflows/download-translations.yml @@ -69,7 +69,9 @@ jobs: # Commit git add . - git commit --author "DangoCat[bot] " -m "[Automated] Update translations" + git config --global user.name "DangoCat[bot]" + git config --global user.email "dangocat@users.noreply.github.com" + git commit -m "[Automated] Update translations" # Push git push origin "$new_branch"