-
Notifications
You must be signed in to change notification settings - Fork 1
chore: Expand cleanup_labels.py classifications #739
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
391fc96
docs: Update SHORT_TERM_PLAN with label matcher fixes and validation …
stranske 8631da7
docs: Add LONG_TERM_PLAN for Phases 4-5
stranske 3ab0d45
Expand cleanup_labels.py classifications
stranske 06b7ea4
Merge branch 'main' into docs/short-term-plan-update
stranske File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -44,6 +44,8 @@ class LabelInfo(NamedTuple): | |
| "agent:claude", | ||
| "agent:copilot", | ||
| "agent:needs-attention", | ||
| "agent:decompose", | ||
| "agent:optimize", | ||
|
||
| "agents", | ||
| # Issue formatting | ||
| "agents:format", | ||
|
|
@@ -53,13 +55,19 @@ class LabelInfo(NamedTuple): | |
| # PR control | ||
| "agents:allow-change", | ||
| "agents:keepalive", | ||
| "agents:keepalive-nudge", | ||
| "agents:activated", | ||
| "agents:paused", | ||
| # Autofix | ||
| # Autofix - all variants used by reusable-18-autofix.yml | ||
| "autofix", | ||
| "autofix:clean", | ||
| "autofix:clean-only", | ||
| "autofix:bot-comments", | ||
| "autofix:applied", | ||
| "autofix:patch", | ||
| "autofix:escalated", | ||
| "autofix:debt", | ||
| "needs-autofix-review", | ||
| # Merge control | ||
| "automerge", | ||
| "from:codex", | ||
|
|
@@ -82,6 +90,13 @@ class LabelInfo(NamedTuple): | |
| # Phase 3 labels | ||
| "agents:decompose", | ||
| "needs-formatting", | ||
| # CI/Integration markers | ||
| "ci-failure", | ||
| "integration-failure", | ||
| "integration-sync", | ||
| "integration-test", | ||
| # Allow guard bypass | ||
| "allow-agents-guard", | ||
| } | ||
|
|
||
| # Standard informational labels - keep for categorization | ||
|
|
@@ -95,6 +110,78 @@ class LabelInfo(NamedTuple): | |
| "help wanted", | ||
| "invalid", | ||
| "question", | ||
| # Common categorization labels (useful for human triage) | ||
| "security", | ||
| "performance", | ||
| "dependencies", | ||
| "testing", | ||
| "refactor", | ||
| "cleanup", | ||
| "maintenance", | ||
| "feature", | ||
| # Area/component labels | ||
| "ci", | ||
| "devops", | ||
| "infra", | ||
| "config", | ||
| "docs", | ||
| "automation", | ||
| "workflows", | ||
| "langchain", | ||
| "pipeline", | ||
| "logging", | ||
| "data", | ||
| "exports", | ||
| # Priority labels (various formats) | ||
| "priority: high", | ||
| "priority: low", | ||
| "priority: medium", | ||
| "priority:high", | ||
| # Risk labels | ||
| "risk:medium", | ||
| "risk:high", | ||
| "risk:major", | ||
| "risk:minor", | ||
| # Status labels | ||
| "status: ready", | ||
| "status: in-progress", | ||
| "status:ready", | ||
| "status:in-progress", | ||
| # Health labels | ||
| "health:coverage", | ||
| "health:repo", | ||
| # Other useful markers | ||
| "guardrail", | ||
| "reliability", | ||
| "usability", | ||
| "versioning", | ||
| "reminder", | ||
| "auth-expiring", | ||
| "phase-1", | ||
| "test", | ||
| "validation", | ||
| # GitHub/Actions related | ||
| "github:actions", | ||
| # Component/area labels (common patterns) | ||
| "app", | ||
| "engine", | ||
| "ui", | ||
| "backend", | ||
| "cli", | ||
| "frontend", | ||
| # Tech/language labels | ||
| "javascript", | ||
| "python", | ||
| "typescript", | ||
| # Domain-specific but common | ||
| "metrics", | ||
| "modeling", | ||
| "schema", | ||
| "build", | ||
| "lint", | ||
| "observability", | ||
| "llm", | ||
| "research", | ||
| } | ||
|
|
||
| # Labels verified as bloat - safe to remove | ||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Both "agent:decompose" (singular) and "agents:decompose" (plural) are present in FUNCTIONAL_LABELS. This appears to be a duplicate entry with inconsistent naming. Verify whether both labels are actually used in workflows, or if one should be removed to avoid confusion.