From 8a3c52d174b36420d5f896f1dbaa4317e21d27a3 Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Thu, 20 Mar 2025 13:20:03 +0000 Subject: [PATCH] Build/Test Tools: Use the wordpress-develop-pr-bot app for changes. This switches to using the `wordpress-develop-pr-bot` GitHub app when authoring commits instead of masquerading as Dependabot. Follow up to [59983], [60052]. See #62221. git-svn-id: https://develop.svn.wordpress.org/trunk@60059 602fd350-edb4-49c9-b593-d223f7449a82 --- .github/workflows/reusable-check-built-files.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/reusable-check-built-files.yml b/.github/workflows/reusable-check-built-files.yml index 9aa0b13daf..72cc138b60 100644 --- a/.github/workflows/reusable-check-built-files.yml +++ b/.github/workflows/reusable-check-built-files.yml @@ -147,8 +147,8 @@ jobs: - name: Configure git user name and email if: ${{ steps.built-file-check.outputs.uncommitted_changes == 'true' }} run: | - git config user.name "dependabot[bot]" - git config user.email 49699333+dependabot[bot]@users.noreply.github.com + git config user.name "wordpress-develop-pr-bot[bot]" + git config user.email ${{ secrets.GH_APP_ID }}+wordpress-develop-pr-bot[bot]@users.noreply.github.com - name: Stage changes if: ${{ steps.built-file-check.outputs.uncommitted_changes == 'true' }}