From ae7cb6866d22297ba666228bd703ca5f35a07ad1 Mon Sep 17 00:00:00 2001 From: Todd Treece <360020+toddtreece@users.noreply.github.com> Date: Tue, 17 Dec 2024 06:31:45 -0500 Subject: [PATCH] Chore: Update git user for depedabot action (#98073) --- .github/workflows/pr-dependabot-update-go-workspace.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pr-dependabot-update-go-workspace.yml b/.github/workflows/pr-dependabot-update-go-workspace.yml index 026e145244f..cf5d6e996d4 100644 --- a/.github/workflows/pr-dependabot-update-go-workspace.yml +++ b/.github/workflows/pr-dependabot-update-go-workspace.yml @@ -38,12 +38,10 @@ jobs: BRANCH_NAME: ${{ github.head_ref || github.ref_name }} run: | if ! git diff --exit-code --quiet; then - git config --local user.name "Grot" - git config --local user.email "grot@grafana.com" + git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" + git config --local user.name "github-actions[bot]" git config --local --add --bool push.autoSetupRemote true echo "Committing and pushing workspace changes" - git remote - git branch -l git commit -a -m "update workspace" git push origin $BRANCH_NAME fi