From 375a8bf44023d72787b3a03b313811c1ab40a3c0 Mon Sep 17 00:00:00 2001 From: Mohsin Zaidi <2236875+smrz2001@users.noreply.github.com> Date: Wed, 31 Jul 2024 18:58:35 -0400 Subject: [PATCH] fix: create release prs via bot --- .github/workflows/create-release-pr.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/create-release-pr.yml b/.github/workflows/create-release-pr.yml index c14bc2784..dd36ec54e 100644 --- a/.github/workflows/create-release-pr.yml +++ b/.github/workflows/create-release-pr.yml @@ -26,7 +26,7 @@ jobs: # See https://github.com/3box/rust-builder image: public.ecr.aws/r5b3e0r5/3box/rust-builder:latest env: - GITHUB_TOKEN: ${{ secrets.GH_TOKEN_PAT }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - name: Checkout repository uses: actions/checkout@v3 @@ -34,8 +34,7 @@ jobs: fetch-depth: 0 - name: git config run: | - git config --global --add safe.directory '*' - git config user.email "github@3box.io" - git config user.name "Github Automation" + git config user.email "github-actions[bot]@users.noreply.github.com" + git config user.name "github-actions[bot]" - name: Create release PR run: make RELEASE_LEVEL=${{ github.event.inputs.level }} release-pr