No commit activity in last 3 years
No release in over 3 years
A gem for converting github issues into trello cards
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.3
>= 0
>= 0
~> 3.3.0

Runtime

~> 4.0.1
~> 1.2.1
 Project Readme

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