Skip to content

Instantly share code, notes, and snippets.

@kadel
Last active October 18, 2017 11:06
Show Gist options
  • Select an option

  • Save kadel/8a8e9862af91e9b131dd35cd02ce644f to your computer and use it in GitHub Desktop.

Select an option

Save kadel/8a8e9862af91e9b131dd35cd02ce644f to your computer and use it in GitHub Desktop.
pull requests closed in last 7 days
javascript:(
function(){
var today = new Date();
var lastWeek = new Date(today.getFullYear(), today.getFullYear, today.getDate() - 7);
var lastWeekDate = lastWeek.getFullYear() +"-"+ lastWeek.getMonth() +"-"+ lastWeek.getDay();
var project = "kedgeproject/kedge";
var type = "pulls";
var q = "is:pr updated:>=2017-10-11 is:closed";
var url = "https://github.com/"+ project +"/"+ type +"?q="+ q;
window.open(url,'_self');
}
)();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment