thetechcollective / gh-cpissues

A gh extension used to copy issues from one repo to another
MIT License
3 stars 0 forks source link

GitHub Issue Copier

A GitHub CLI extension to copy GitHub Issues from one repository to another based on a specified label.

Prerequisites

Installation

  1. Make sure you have the GitHub CLI installed.
  2. Install the gh extension from the repository with command: gh extension install thetechcollective/gh-cpissues

Usage

gh cpissues <git-repo> --label <label> [--verbose]

Replace '<git-repo>' with the target repository where you want to copy the issues and '<label>' with the label of the issues you want to copy.

[--verbose]: (Optional) Include this flag to get more detailed output about the operation. This can be helpful for debugging or understanding the process in more detail.

Options

Example

gh cpissues thetechcollective/dx-intro --label template 

This command will copy all issues labeled "template" from the repository "thetechcollective/dx-intro" to the current repository.

Notes