you have a list of most desired issues to tackle or would you prefer just pick something and go?
Discussion
something in our alpha milestone might be a good start!
👀
https://github.com/damus-io/notedeck/milestone/1
Any chance you can help mass migrate/duplicate issues from android repo to notedeck repo?
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
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.
😅😅
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.