Manage GitLab labels including create, list, update, and delete operations at project and group level. Use when organizing issues/MRs with labels, creating label taxonomies, or managing label colors/descriptions. Triggers on label, tag, issue label, create label, manage labels.
Manage labels at project and group level.
# Create project label
glab label create --name bug --color "#FF0000"
# Create group label
glab label create --group my-group --name priority::high --color "#FF6B00"
# List labels
glab label list
# Update label
glab label edit bug --color "#CC0000" --description "Software defects"
# Delete label
glab label delete bug
Where should this label live?
├─ Used across multiple projects in a group
│ └─ Group-level: glab label create --group <group> --name <label>
└─ Specific to one project
└─ Project-level: glab label create --name <label>
Use group-level labels when:
priority::high, type::bug, status::blockedUse project-level labels when:
needs-ux-review, deploy-to-staging, legacy-codeSet up priority labels (group-level):
glab label create --group engineering --name "priority::critical" --color "#FF0000"
glab label create --group engineering --name "priority::high" --color "#FF6B00"
glab label create --group engineering --name "priority::medium" --color "#FFA500"
glab label create --group engineering --name "priority::low" --color "#FFFF00"
Set up type labels (group-level):
glab label create --group engineering --name "type::bug" --color "#FF0000"
glab label create --group engineering --name "type::feature" --color "#00FF00"
glab label create --group engineering --name "type::maintenance" --color "#0000FF"
Create workflow labels:
glab label create --name "needs-review" --color "#428BCA"
glab label create --name "ready-to-merge" --color "#5CB85C"
glab label create --name "blocked" --color "#D9534F"
List all labels to review:
glab label list --per-page 100 > labels.txt
Delete deprecated labels:
glab label delete old-label-1
glab label delete old-label-2
Using labels:
glab-issue for applying labels to issuesglab-mr for applying labels to merge requestsscripts/batch-label-issues.sh for bulk labelingglab label get supports --output json / -F json for structured output, which is useful for agent automation.
# Get a label with JSON output
glab label get <label-id> --output json
glab label get <label-id> -F json
For complete command documentation and all flags, see references/commands.md.
Available commands:
create - Create label (project or group)list - List labelsedit - Update label propertiesdelete - Delete labelget - View single label detailsSearch for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer