From e6514b76fd31e2d469a0f1d9f924f6edc38de669 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=A5=E6=B5=A9?= Date: Fri, 11 Oct 2024 16:39:35 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=9B=B4=E6=96=B0CI=E5=B7=A5=E4=BD=9C?= =?UTF-8?q?=E6=B5=81=E6=9D=83=E9=99=90=E9=85=8D=E7=BD=AE=E4=BB=A5=E6=94=AF?= =?UTF-8?q?=E6=8C=81=E5=8F=91=E5=B8=83=E5=92=8C=E8=AF=84=E8=AE=BA=E5=8A=9F?= =?UTF-8?q?=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 79a7b68..14bdda8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -12,9 +12,11 @@ jobs: next_release_published: ${{ steps.semantic.outputs.next_release_published }} next_release_version: ${{ steps.semantic.outputs.next_release_version }} runs-on: ubuntu-latest - permissions: # Job-level permissions configuration starts here - contents: write # 'write' access to repository contents + permissions: # Job-level permissions configuration starts here id-token: write + contents: write # to be able to publish a GitHub release + issues: write # to be able to comment on released issues + pull-requests: write # to be able to comment on released pull requests steps: - name: Checkout uses: actions/checkout@v4