Skip to content

Instantly share code, notes, and snippets.

@trulysinclair
Last active August 2, 2024 19:48
Show Gist options
  • Save trulysinclair/86f95895df60b513aee82d1e808dec57 to your computer and use it in GitHub Desktop.
Save trulysinclair/86f95895df60b513aee82d1e808dec57 to your computer and use it in GitHub Desktop.
transfer-bulk-issues.ps1
$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>
}
@trulysinclair
Copy link
Author

Modify with -l <label> to filter by label

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment