Last active
August 2, 2024 19:48
-
-
Save trulysinclair/86f95895df60b513aee82d1e808dec57 to your computer and use it in GitHub Desktop.
transfer-bulk-issues.ps1
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
$issues = gh issue list -s all -L 500 --json number | ConvertFrom-Json | |
foreach ($issue in $issues) { | |
$issueNumber = $issue.number | |
gh issue transfer $issueNumber https://github.com/<your-org>/<your-repo> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Modify with
-l <label>
to filter by label