🎯 Fix 403 "Resource not accessible" Errors
This error means your token lacks
write permission for Pull Requests or Issues.
PRadar needs these to post comments, request reviewers, and draft code fixes.
▶ Option A — Fine-grained PAT (most common)
- Go to github.com → Settings → Developer settings → Personal access tokens → Fine-grained tokens
- Click your token to edit it
- Under Repository permissions:
• Pull requests → Read & write
• Issues → Read & write
• Contents → Read-only (for diff access)
- Scroll down → Update token
▶ Option B — Classic PAT
- Go to Personal access tokens → Tokens (classic)
- Click your token → check the top-level repo box (includes all sub-scopes)
- Click Update token
▶ Option C — GitHub Actions GITHUB_TOKEN
Add this block to your
.yml workflow file:
permissions:
pull-requests: write
issues: write
After updating, re-paste your token above and click
💾 Save & Connect.
Until fixed, PRadar auto-falls back to Slack notification.