Generates trello cards on a specified board for all open issues in specified github repo(s).
After completing prerequisites:
gem install github_to_trello
require 'github_to_trello'
GithubToTrello.new(
:public_key => "your_public_key",
:token => "your_token",
:board_id => "your_trello_board_id",
:inbox_name => "your_name/your_repo",
).update
- A trello account with access to the board you are populating with github issues.
- A public key and token giving access to that trello account
PUBLIC_KEY
- Log into trello and visit https://trello.com/app-keyTOKEN
- Go to https://trello.com/1/connect?key=<...>&name=MyApp&response_type=token&scope=read,write (substituting your public key for <...> and replacing 'MyApp' with a unique name)
- Creates a list for specified repo
- Adds cards for all open issues or PRs in that repo
Sites used for reference