Skip to content

Instantly share code, notes, and snippets.

@rofe
Last active September 12, 2020 08:14
Show Gist options
  • Save rofe/e3cb28cef8b54a2b6cac21f5532b41a1 to your computer and use it in GitHub Desktop.
Save rofe/e3cb28cef8b54a2b6cac21f5532b41a1 to your computer and use it in GitHub Desktop.
Tampermonkey script to show Helix changes from the last 7 days
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