From f6df7b9c688237a7e59990bbe2d98044759a1bb3 Mon Sep 17 00:00:00 2001 From: "K.B.Dharun Krishna" Date: Sun, 6 Oct 2024 10:45:37 +0530 Subject: [PATCH] fu: improve commit job with verbose message, fix account --- .github/workflows/update-contributors.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update-contributors.yml b/.github/workflows/update-contributors.yml index 64c1f6e..b25e708 100644 --- a/.github/workflows/update-contributors.yml +++ b/.github/workflows/update-contributors.yml @@ -45,8 +45,8 @@ jobs: if: github.repository == 'Vanilla-OS/.github' && github.ref == 'refs/heads/main' continue-on-error: true run: | - git config user.name github-actions - git config user.email github-actions@github.com + git config user.name 'GitHub Action' + git config user.email 'action@github.com' git add . - git commit -m "chore: update contributors list" + git commit -m "chore: auto-update contributors list" git push