mirror of
https://github.com/xtr-dev/payload-billing.git
synced 2025-12-10 10:53:23 +00:00
- 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>
22 lines
678 B
JSON
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"
|
|
}
|
|
} |