From 169e5973564ffafa5b67e99a739e266967f2558e Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Mon, 18 Sep 2023 16:13:56 +0200 Subject: [PATCH] build(ci): git config local only in workflow MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .github/workflows/clone-count.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/clone-count.yml b/.github/workflows/clone-count.yml index aa10b2fa..43119339 100644 --- a/.github/workflows/clone-count.yml +++ b/.github/workflows/clone-count.yml @@ -78,8 +78,8 @@ jobs: echo "GitHub Clones" >> CLONE.md echo '```' >> CLONE.md - git config --global user.name "GitHub Action" - git config --global user.email "action@github.com" + git config --local user.name "GitHub Action" + git config --local user.email "action@github.com" git add CLONE.md git commit -m "docs: create clone count badge" fi -- 2.34.1