From 3baea9078b418218abc9038b3e37adcd733c3b8a Mon Sep 17 00:00:00 2001 From: LinXunFeng Date: Sat, 22 Aug 2026 15:53:19 +0800 Subject: [PATCH] ci(assign-issue): grant issues write permission to GITHUB_TOKEN The default workflow permission of the repository is read-only, and this workflow declares no permissions block, so GITHUB_TOKEN cannot assign the issue and the run fails with "Resource not accessible by integration". Opening issue #150 triggered the latest failure: https://github.com/fluttercandies/flutter_scrollview_observer/actions/runs/32442695186 --- .github/workflows/assign-issue.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/assign-issue.yml b/.github/workflows/assign-issue.yml index d54ea42..ab833ad 100644 --- a/.github/workflows/assign-issue.yml +++ b/.github/workflows/assign-issue.yml @@ -7,6 +7,8 @@ on: jobs: auto-assign: runs-on: ubuntu-latest + permissions: + issues: write steps: - name: 'Auto-assign issue' uses: pozil/auto-assign-issue@v1