From 6652d90561b9886108b0fc1d455fede2bf66d644 Mon Sep 17 00:00:00 2001 From: Sebastian Estrella <2049686+sestrella@users.noreply.github.com> Date: Fri, 9 Feb 2024 15:54:53 -0500 Subject: [PATCH] ci: Replace GITHUB_TOKEN with BOT_TOKEN --- .github/workflows/release.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4011aff..bdfb93e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,10 +14,6 @@ jobs: release: if: ${{ github.event.workflow_run.conclusion == 'success' }} runs-on: ubuntu-latest - permissions: - contents: write - issues: write - pull-requests: write steps: - name: Checkout code uses: actions/checkout@v4 @@ -30,4 +26,4 @@ jobs: - name: Run semantic-release run: nix develop -c npx semantic-release env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }}