From 0034d3c73c05193197524b61437d3bbed5046cbe Mon Sep 17 00:00:00 2001 From: Nicholas Rodrigues Lordello Date: Wed, 3 Jul 2024 19:55:00 +0200 Subject: [PATCH] Do Not Add Reviewer To Release PR --- .github/workflows/release.yml | 4 ++-- bin/github-release.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 82e1b7621..a7dfc6776 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,8 +9,6 @@ permissions: jobs: release: runs-on: ubuntu-latest - env: - GH_TOKEN: ${{ github.token }} steps: - uses: actions/checkout@v4 - run: | @@ -22,3 +20,5 @@ jobs: - run: | npm ci bash bin/github-release.sh --verbose + env: + GH_TOKEN: ${{ github.token }} diff --git a/bin/github-release.sh b/bin/github-release.sh index de5c0b742..02ac37572 100644 --- a/bin/github-release.sh +++ b/bin/github-release.sh @@ -103,7 +103,7 @@ if [[ -z "$draft" ]] && [[ "$current" == "$latest" ]]; then git checkout -b "$branch" git commit -am "Bump Version to $newtag" git push -u origin "$branch" - gh pr create --fill --reviewer safe-global/safe-protocol + gh pr create --fill fi elif [[ "$current" != "$latest" ]]; then # In this case, the current version is newer that the latest released