From f733c7046792b85be5a4775027df7a78f0449b81 Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Mon, 20 Apr 2026 17:49:47 +0200 Subject: [PATCH] tools: set bot as author of tools-deps-update PRs --- .github/workflows/tools.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tools.yml b/.github/workflows/tools.yml index f45ffd68ca6b76..7f17aed88347dc 100644 --- a/.github/workflows/tools.yml +++ b/.github/workflows/tools.yml @@ -307,10 +307,6 @@ jobs: tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true rm temp-output steps: - - name: Setup Git config - run: | - git config --global user.name "Node.js GitHub Bot" - git config --global user.email "github-bot@iojs.org" - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 if: github.event_name == 'schedule' || inputs.id == 'all' || inputs.id == matrix.id with: @@ -346,3 +342,5 @@ jobs: labels: ${{ matrix.label }} title: '${{ matrix.subsystem }}: update ${{ matrix.id }} to ${{ env.NEW_VERSION }}' body: This is an automated update of ${{ matrix.id }} to ${{ env.NEW_VERSION }}. + committer: ${{ github.actor }} <${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com> + author: Node.js GitHub Bot