From 60e1f4884f0157dbcf9b25da0e4ef417f3c3e7bb Mon Sep 17 00:00:00 2001 From: Oishi Takanori Date: Sat, 24 Feb 2024 16:49:57 +0900 Subject: [PATCH] ci: Fix git config in publish workflow (#8) --- .github/workflows/publish.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7ffa85e..bce8814 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -32,6 +32,8 @@ jobs: - run: | git add ./public/* if ! git diff --staged --exit-code --quiet; then + git config --global user.name 'github-actions[bot]' + git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com' git commit -m 'Updated by qiita-cli' git push --force fi