From b96d31881ee4ac74fa88d5dd93136036363d1513 Mon Sep 17 00:00:00 2001 From: xianren Date: Mon, 20 Apr 2026 17:26:51 +0800 Subject: [PATCH] fix(ci): grant issues:write to verify-links workflow Weekly scheduled run was failing with 'Resource not accessible by integration' when trying to open a maintenance issue. Default GITHUB_TOKEN is read-only for contents and has no access to issues under restrictive repo defaults. --- .github/workflows/verify-links.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/verify-links.yml b/.github/workflows/verify-links.yml index 6f79231..cf7dfab 100644 --- a/.github/workflows/verify-links.yml +++ b/.github/workflows/verify-links.yml @@ -6,6 +6,10 @@ on: - cron: '0 3 * * 1' workflow_dispatch: # Allow manual triggering +permissions: + contents: read + issues: write + jobs: verify: runs-on: ubuntu-latest