You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
commits = y.query('select commit from github.repo.commits where id="' + id + '" and repo in (select repository.name from github.user.repos where id="' + id + '")');
// TODO: what's the best way to handle failure?
if (commits.results) {
// look through each commit
for each (commit in commits.results.commits.commit) {
// filter only our login
if (id === commit.author.login.toString()) {
if (match = commit.url.match(/\/[^\/]+\/([^\/]+)\/.+/)) {