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