diff --git a/.github/workflows/renovate-lockfile.yaml b/.github/workflows/renovate-lockfile.yaml index 92f3fa8..45cd048 100644 --- a/.github/workflows/renovate-lockfile.yaml +++ b/.github/workflows/renovate-lockfile.yaml @@ -23,9 +23,9 @@ jobs: - name: Update lockfile run: | if git diff --name-only | grep -q 'stack.yaml.lock'; then - git config user.name "unused" - git config user.email "unused@users.noreply.github.com" + git config user.name "renovate[bot]" + git config user.email "29139614+renovate[bot]@users.noreply.github.com" git add stack.yaml.lock - git commit --amend --no-edit - git push -f + git commit -m "chore(deps): update lockfile" + git push fi