Node module to help with the handling of github repo information
const repoHelper = require('repoHelper');
return repoHelper.createGithubAuthentication('Demands', 'token', ['repo'])
.then((credentials) => {
const limit = 0;
const debug = false;
return repoHelper.getRepos(credentials, limit, debug)
.then((repos) => {
return Promise.all(repos.map((repo) => {
return repoHelper.getOpenPRs(credentials, repo, debug);
}))
});
});