This repository was archived by the owner on Feb 6, 2026. It is now read-only.
feat(issues): add move command for moving issues between projects#62
Merged
feat(issues): add move command for moving issues between projects#62
Conversation
[#57] - Add `jtk issues move <issue-key>... --to-project <project>` command - Add `jtk issues move-status <task-id>` to check async operation status - Uses Jira Cloud bulk move API (not available on Server/Data Center) - Supports specifying target issue type with `--to-type` - Async by default with `--wait` (can use `--no-wait` to return immediately) - Optional notifications via `--notify` flag API layer includes: - MoveIssues - initiates bulk move operation - GetMoveTaskStatus - checks async task status - GetProjectIssueTypes - lists available issue types - GetProjectStatuses - lists available statuses - BuildMoveRequest - helper to construct move requests Closes #57
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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
[#57]
Add the ability to move issues between projects using Jira Cloud's bulk move API.
Summary
jtk issues move <issue-key>... --to-project <project>commandjtk issues move-status <task-id>to check async operation statusUsage
Features
--to-type)--waitis default, use--no-waitfor fire-and-forget)--notifyflagLimitations (Jira API constraints)
Test plan
Closes #57