From 693cab3dd3b2e7aefdd1c5f2eb6390cac286e7df Mon Sep 17 00:00:00 2001 From: Paul Schifferer Date: Sat, 2 Nov 2024 13:27:58 -0700 Subject: [PATCH] Workflow updates --- .github/workflows/go-update-deps.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go-update-deps.yml b/.github/workflows/go-update-deps.yml index f50fa16..3b1fe89 100644 --- a/.github/workflows/go-update-deps.yml +++ b/.github/workflows/go-update-deps.yml @@ -31,12 +31,12 @@ jobs: - name: Update dependencies run: | git config --global user.email "ci@sweetrpg.com" - git config --global user.name "SweetRPG Depedency Updater" + git config --global user.name "SweetRPG Dependency Updater" git checkout ${{ github.head_ref || github.ref_name }} go get -u ./... go mod tidy git add go.mod go.sum - git commit -m "Update dependencies" + git commit -m "Update dependencies" || exit 0 git push origin || exit 0