Hi,
i am planning to migrate our existing trello boards to github projects but no idea how to do it. If anyone has done this before or has idea kindly let me know.
Thanks in advancs
Your description is not very clear on what you want to migrate to github. Are you try to send data from the card and eg create an issue on a repo?
Have you look at the GitHub power up?
@milynnus i looked up the github power and used that as well. but that is for new ones. i want to export entire trello boards with cards and the details in the cards and import to github projects and display as it was in trello or somewhat similar
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
as there is a well documented API for Trello (https://developer.atlassian.com/cloud/trello/rest/api-group-actions/) and also a good API for GitHub (https://docs.github.com/en/rest?apiVersion=2022-11-28) you should be able to write scripts which do the job. This of course expects some knowledge on APIs and also authorizations like OAuth...
Much easier would probably be to find a tool which does the job for you, but as I've not had this problem before I can not recommend you any. Maybe just try to find some via google?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Do you want to have a continuous integration which syncs everything 2 ways between Trello and GitHub Projects? Or do you want to close the Trello board and turn it into a GitHub Projects project?
In the first case you could try to set up Zapier triggers which apply the changes on the corresponding tool and mirror your boards. (I did not find any standard tool for that)
In the second case - Maybe you could look into csv exports for Trello and import them in GitHub Projects?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Mika von Essen I want to close down the trello board and move the contents to Github projects. i did not see an option to import CSV into Github Projects
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hmm.. Via google I've found this command line tool: https://www.npmjs.com/package/github-csv-tools, maybe this could help you? You would probably need to map the values prior executing, but this could maybe be your way. Looking into the project, the csv table should or can contain header with the values title, body, labels, milestone, assignee, state
You could also fork the repository from the github site (https://github.com/gavinr/github-csv-tools) and try to modify it, but this would need some NodeJS and JavaScript knowledge and I don't know your technical background..
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.