From d95f215975974f1b4ea39a00e0478c1cca2e8eb0 Mon Sep 17 00:00:00 2001 From: retoor Date: Sat, 23 Nov 2024 19:36:40 +0000 Subject: [PATCH] fix: configure git user email and name before commit in export workflow --- .gitea/workflows/export.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/export.yaml b/.gitea/workflows/export.yaml index 96322cf..48eef18 100644 --- a/.gitea/workflows/export.yaml +++ b/.gitea/workflows/export.yaml @@ -17,5 +17,7 @@ jobs: - run: make - run: echo "This job's status is ${{ job.status }}." - run: git add . + - run: git config --global user.email "bot@molodetz.com" + - run: git config --global user.name "bot" - run: git commit -a -m "Update export statistics" - run: git push