-
-
Save rssnyder/d13e1b33820b87c1e6d68be7c7165b01 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
// jshint esversion: 6, asi: true | |
// <xbar.title>Github Pull requests</xbar.title> | |
// <xbar.version>v2.0</xbar.version> | |
// <xbar.author>Noam Knispel</xbar.author> | |
// <xbar.author.github>noamknispel</xbar.author.github> | |
// <xbar.desc>Get list of pull requests from Github for multiple repositories</xbar.desc> | |
// <xbar.dependencies>node.js request co bluebird</xbar.dependencies> | |
// EDIT YOUR INFO BELOW: | |
const username = '' | |
const token = '' | |
var repos = [ | |
//owner/repo | |
] | |
// DO NOT EDIT BELOW THIS POINT | |
var bluebird = require("bluebird") | |
var request = bluebird.promisifyAll(require("request")) | |
var co = require("co") | |
co(function* () { | |
var results = yield repos.map(function(repo) { //jshint ignore:line | |
var options = { | |
url: 'https://api.github.com/repos/' + repo + '/pulls', | |
headers: { | |
'User-Agent': username + ' - bitbar' | |
}, | |
auth: { | |
user: username, | |
password: token | |
} | |
} | |
return request.getAsync(options); | |
}) | |
var totalCount = 0 | |
var strings = results.reduce( (acc, response) => { | |
var info = JSON.parse(response.body) | |
if(info.length > 0) { | |
totalCount += info.length | |
acc.push(info[0].base.repo.name + " | color=#0000ff") | |
info.forEach(function(pr) { | |
acc.push("#" + pr.number + " " + pr.title + " (" + pr.user.login + ") | href=" + pr.html_url) | |
}) | |
} | |
return acc | |
}, ['---'] ) | |
strings.unshift(`${totalCount} Pull Request`) | |
for( var string of strings) | |
console.log(string) | |
}).catch(function() {}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment