Fix CEO triage: dynamically list all org repos instead of hardcoded list

CEOs were missing issues in repos not explicitly listed (e.g.,
groombook/infra, PRI plugin repos). Now uses gh repo list to
discover all repos in the org at triage time.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
2026-03-20 23:00:19 -04:00
parent cd62d2f6ec
commit 10935a9acc
+4 -2
View File
@@ -48,8 +48,10 @@ Replace `{issueId}` with the actual issue ID. If checkout returns 409 (already c
GitHub issues are the primary work tracker. Check all Privileged Escalation repos for open issues:
gh issue list --repo privilegedescalation/headlamp-plugins --state open --limit 20
gh issue list --repo privilegedescalation/privilegedescalation --state open --limit 10
for repo in $(gh repo list privilegedescalation --json name --jq '.[].name'); do
echo "--- privilegedescalation/$repo ---"
gh issue list --repo privilegedescalation/$repo --state open --limit 10
done
For each open issue: