if you're asking me to write that for you, i can do that. wouldn't take too long. just a basic for loop in a bash script.
with the right permissions, i'm sure you could use the `gh` cli to do this pretty quickly. https://cli.github.com/manual/gh_issue_transfer
Discussion
😅😅
Yeah I smashed my head on this one. This is above my dev capabilities
if you just want a blanket lift and shit, this should work for you. make sure you have the github-cli installed and authenticated. https://cli.github.com/
```
for issue_num in $(gh --repo damus-io/android issue list --jq '.[].number' --json 'number' --limit 150); do gh --repo damus-io/android issue transfer $issue_num damus-io/notedeck; done
```
i ran it on my machine and it seemed to run fine. however, i obviously don't have the right permissions to do so.