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:
+4
-2
@@ -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:
|
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
|
for repo in $(gh repo list privilegedescalation --json name --jq '.[].name'); do
|
||||||
gh issue list --repo privilegedescalation/privilegedescalation --state open --limit 10
|
echo "--- privilegedescalation/$repo ---"
|
||||||
|
gh issue list --repo privilegedescalation/$repo --state open --limit 10
|
||||||
|
done
|
||||||
|
|
||||||
For each open issue:
|
For each open issue:
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user