A GitHub CLI extension to move a project item to a specified Kanban column.
Prerequisite:
- Install the GitHub CLI.
- Make sure that you have project permissions
gh auth refresh -s project
Install:
gh extension install daniel-leinweber/gh-project-item-move
Upgrade:
gh extension upgrade project-item-move
Uninstall:
gh extension remove project-item-move
The extension adds a project-item-move
command to the GitHub CLI.
gh-project-item-move
Copyright (C) 2024 Daniel Leinweber
USAGE:
Move issue interactively
gh project-item-move
Move issue with ID '123' to the 'Done' column of the project 'MyProject':
gh project-item-move --column Done --issue 123 --owner daniel-leinweber --project MyProject
-o, --owner Owner of the project (optional)
-p, --project Name of the Project (optional)
-i, --issue ID of the issue to move (optional)
-c, --column Column Name to move the issue to (optional)
--help Display this help screen.
--version Display version information.