No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
List open pull requests for an organization.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

>= 0
~> 3.0
 Project Readme

lita-github_pr_list

lita-github_pr_list is a handler for Lita that connects up with GitHub and lists an organization's pull requests

Installation

Add this line to your application's Gemfile:

gem 'lita-github_pr_list'

And then execute:

$ bundle

Or install it yourself as:

$ gem install lita-github_pr_list

Configuration

Lita.configure do |config|
...
  config.handlers.github_pr_list.github_organization = ENV['GITHUB_ORG']
  config.handlers.github_pr_list.github_access_token = ENV['GITHUB_TOKEN']
...
end

Usage

Lita: pr list

All of the open pull requests for an organization will get listed out from lita. If it has one of the emoji statuses below it will display it, otherwise it will display 🆕.

Emoji status

New - 🆕 - This is the default state, shown (new) if none of the other states are set. Pass - 🐘 🐘 🐘 = (elephant)(elephant)(elephant) Pass DESIGN - 🎨 🎨 🎨 = (art)(art)(art) In Review - 📖 = (book) Fail - 💩 OR 💩 = (poop) Fixed - 👋 = (wave)

Placing an 🎨 or 🐘 in the initial pull request will designate the request to be for design or developers respectively Placing neither 🎨 nor 🐘, or placing both of them will assume both design and developer review is requested

Contributing

  1. Fork it ( https://github.com/amaabca/lita-github_pr_list/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request