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.
This commit is contained in:
xianren
2026-04-20 17:26:51 +08:00
parent e4f9dc60fa
commit b96d31881e
+4
View File
@@ -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