Skip to content

chrissiedunham/github_to_trello

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

78 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Overview

Generates trello cards on a specified board for all open issues in specified github repo(s).

  • Creates a list for specified repo (if a list for that repo is not already present)
  • Adds or updates cards for all open issues or PRs in that repo

Usage

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",                                                           
  :repo_name => "your_github_account/your_repo",                                         
).update                                                                             
                                                                                     

Prerequisites

  1. A trello account with access to the board you are populating with github issues.
  2. A public key and token giving access to that trello account