glab issue
Create, view, update, and manage GitLab issues.
Quick start
# Create an issue
glab issue create --title "Fix login bug" --label bug
# Create or update with a multi-line description from a file
glab issue create --title "Fix login bug" --description-file description.md
glab issue update 123 --description-file description.md
# List open issues
glab issue list --state opened
# View issue details
glab issue view 123
# View or comment on an issue/work item from a GitLab URL
glab issue view https://gitlab.com/group/project/-/work_items/123
glab issue note https://gitlab.com/group/project/-/issues/123 -m "Working on this now"
# Add comment
glab issue note 123 -m "Working on this now"
# Close issue
glab issue close 123
Common workflows
Issue and work item URL inputs
Issue argument parsing accepts GitLab work item URLs in addition to issue URLs where the glab issue subcommand resolves an issue argument. This is URL compatibility for issue-style operations such as view, note, update, close, and related commands; use glab work-items when you need dedicated work item fields or work-item-specific lifecycle behavior.
glab issue view https://gitlab.com/group/project/-/work_items/123
glab issue note https://gitlab.com/group/project/-/work_items/123 -m "Follow-up note"
glab issue update https://gitlab.com/group/project/-/work_items/123 --label needs-triage
Bug reporting workflow
Create bug issue:
glab issue create \ --title "Login fails with 500 error" \ --label bug \ --label priority::high \ --assignee @dev-leadIf your project keeps reusable issue templates in-repo, use
--templateto start from a template file instead of pasting recurring boilerplate:glab issue create \ --title "Login fails with 500 error" \ --template .gitlab/issue_templates/bug.md \ --label bugFor one-off multi-line descriptions, use
--description-file <path>or--description-file -for stdin. It is mutually exclusive with--description; on create, it is also mutually exclusive with--template. A file containing exactly-is rejected because--description -means "open an editor".Add reproduction steps:
glab issue note 456 -m "Steps to reproduce: 1. Navigate to /login 2. Enter valid credentials 3. Click submit Expected: Dashboard loads Actual: 500 error"
Issue triage
List untriaged issues:
glab issue list --label needs-triage --state openedUpdate labels and assignee:
glab issue update 789 \ --label backend,priority::medium \ --assignee @backend-team \ --milestone "Sprint 23" glab issue update 789 --description-file triage-summary.mdRemove triage label:
glab issue update 789 --unlabel needs-triage
Batch labeling:
For applying labels to multiple issues at once, use the script bundled with this
skill under scripts/ (paths below are relative to the skill's own directory):
scripts/batch-label-issues.sh "priority::high" 100 101 102
scripts/batch-label-issues.sh bug 200 201 202 203
Sprint planning
View current sprint issues:
glab issue list --milestone "Sprint 23" --assignee @me
Add to sprint:
glab issue update 456 --milestone "Sprint 23"
Board view:
glab issue board view
# Retrieve every project/group board issue instead of only the first API page
glab issue board view --paginate
Use --paginate for complete board triage when a board can exceed one API page. Without it, the interactive board uses the first page returned by GitLab. The option works for both project and group board issue retrieval and can be combined with --assignee, --labels, or --milestone filters.
Linking issues to work
Create MR for issue:
glab mr for 456 # Creates MR that closes issue #456
Automated workflow (create branch + draft MR):
scripts/create-mr-from-issue.sh 456 --create-mr
This automatically: creates branch from issue title → empty commit → pushes → creates draft MR.
Close via commit/MR:
git commit -m "Fix login bug
Closes #456"
Related Skills
Creating MRs from issues:
- See
glab-mrfor merge request operations - Use
glab mr for <issue-id>to create MR that closes issue - Script:
scripts/create-mr-from-issue.shautomates branch creation + draft MR
Label management:
- See
glab-labelfor creating and managing labels - Script:
scripts/batch-label-issues.shfor bulk labeling operations
Project planning:
- See
glab-milestonefor release planning - See
glab-iterationfor sprint/iteration management
Command reference
For complete command documentation and all flags, see references/commands.md.
Available commands:
create- Create new issuelist- List issues with filtersview- Display issue detailsnote- Add comment to issueupdate- Update title, labels, assignees, milestoneclose- Close issuereopen- Reopen closed issuedelete- Delete issuesubscribe/unsubscribe- Manage notificationsboard- Work with issue boards