Files
payload-billing/.github/claude-config.json
Bas van den Aakster 7a3d6ec26e fix: restrict Claude workflows to only bvdaakster user
- Change issue implementation workflow to only allow bvdaakster
- Update code review workflow to only trigger for bvdaakster's PRs
- Update configuration to reflect single-user access
- Remove other privileged users from the list

Only bvdaakster can now:
- Trigger Claude issue implementations with @claude comments
- Have PRs automatically reviewed by Claude

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-18 21:20:39 +02:00

22 lines
678 B
JSON

{
"privilegedUsers": [
"bvdaakster"
],
"permissions": {
"issueImplementation": {
"strategy": "privilegedUsers",
"description": "Only bvdaakster can request Claude implementations"
},
"codeReview": {
"strategy": "privilegedUsers",
"description": "Only bvdaakster can trigger Claude reviews"
}
},
"strategies": {
"privilegedUsers": "Only users in the privilegedUsers list",
"adminsOnly": "Only repository admins",
"adminOrPrivileged": "Repository admins OR users in privilegedUsers list",
"orgMembersWithWrite": "Organization members with write access",
"everyone": "All users with repository access"
}
}