Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.08 KB

README.md

File metadata and controls

36 lines (27 loc) · 1.08 KB

Overview

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

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",
  :inbox_name => "your_name/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

Features

  • Creates a list for specified repo
  • Adds cards for all open issues or PRs in that repo

Sites used for reference