From c2f3c367478eff03c73941bf48b1c465fd0cc01a Mon Sep 17 00:00:00 2001 From: Johnny Cena Date: Wed, 20 Aug 2025 13:18:13 +0200 Subject: [PATCH] global config instead of repo specific --- .github/workflows/update_examples.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update_examples.yml b/.github/workflows/update_examples.yml index cd8be7eac..8fd1047a5 100644 --- a/.github/workflows/update_examples.yml +++ b/.github/workflows/update_examples.yml @@ -59,8 +59,8 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - git config user.name "github-actions[bot]" - git config user.email "41898282+github-actions[bot]@users.noreply.github.com" + git config --global user.name "github-actions[bot]" + git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" git add -A git commit -m "Update examples collection" || echo "git exited with code 1, nothing changed" git push