From 32b4ffa6a27370d192473e01394540df3355f974 Mon Sep 17 00:00:00 2001 From: Alex Moinet Date: Wed, 4 Oct 2023 16:35:03 +0100 Subject: [PATCH] Set git config user for committing --- .github/workflows/update-dependencies.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml index a270f9c35..36b4794ee 100644 --- a/.github/workflows/update-dependencies.yml +++ b/.github/workflows/update-dependencies.yml @@ -28,6 +28,10 @@ jobs: ruby-version: 2.7 bundler-cache: true + - name: Setup git config + run: git config user.name "GitHub Actions Bot" | + git config user.email "<>" + - run: bundle exec rake dependencies:update - name: Create pull request