From c527c826ebd250fb4076fe10bf7287fbedc9aa75 Mon Sep 17 00:00:00 2001 From: konradasb Date: Mon, 21 Oct 2024 16:36:57 +0300 Subject: [PATCH] chore: Add missing GITHUB_TOKEN permissions --- .github/workflows/release-please.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index b8d9db0..afdb01e 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -7,6 +7,10 @@ on: branches: - main +permissions: + contents: read + pull-requests: write + jobs: release-please: runs-on: ubuntu-latest @@ -17,4 +21,4 @@ jobs: - name: Run release-please uses: google-github-actions/release-please-action@v4 with: - token: ${{ secrets.ORG_GITHUB_TOKEN }} + token: ${{ secrets.GITHUB_TOKEN }}