Last active
October 18, 2017 11:06
-
-
Save kadel/8a8e9862af91e9b131dd35cd02ce644f to your computer and use it in GitHub Desktop.
pull requests closed in last 7 days
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
| 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