Last active
September 12, 2020 08:14
-
-
Save rofe/e3cb28cef8b54a2b6cac21f5532b41a1 to your computer and use it in GitHub Desktop.
Tampermonkey script to show Helix changes from the last 7 days
This file contains 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
d=new Intl.DateTimeFormat("de", { year: 'numeric', month: '2-digit', day: "2-digit" }).format(new Date(Date.now()-691200000)).split('.').reverse().join('-');window.open(`https://github.com/issues?q=is%3Aissue+label%3Aenhancement+org%3Aadobe+helix+OR+theblog+closed%3A>${d}`); | |
// ==UserScript== | |
// @name Helix changes | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Find all Helix enhancements in GitHub in the last 7 days | |
// @author rofe | |
// @match <your_url> | |
// @grant none | |
// ==/UserScript== | |
(() => { | |
const d = new Intl.DateTimeFormat("de", { | |
year: 'numeric', | |
month: '2-digit', | |
day: "2-digit", | |
}) | |
.format(new Date(Date.now()-691200000)) | |
.split('.') | |
.reverse() | |
.join('-'); | |
window.open(`https://github.com/issues?q=is%3Aissue+label%3Aenhancement+org%3Aadobe+helix+OR+theblog+closed%3A>${d}`); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment