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>
This commit is contained in:
2025-09-18 21:20:39 +02:00
parent 534b0e440f
commit 7a3d6ec26e
3 changed files with 8 additions and 14 deletions

View File

@@ -1,16 +1,15 @@
{
"privilegedUsers": [
"bastiaan",
"xtr-dev-team"
"bvdaakster"
],
"permissions": {
"issueImplementation": {
"strategy": "adminOrPrivileged",
"description": "Allow admins and privileged users to request Claude implementations"
"strategy": "privilegedUsers",
"description": "Only bvdaakster can request Claude implementations"
},
"codeReview": {
"strategy": "privilegedUsers",
"description": "Only run Claude reviews for privileged users"
"description": "Only bvdaakster can trigger Claude reviews"
}
},
"strategies": {