Last active
December 13, 2018 17:41
-
-
Save arnlaugsson/4347912c7357515b060362381d8abc2f to your computer and use it in GitHub Desktop.
Find matching PRs in console
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
| Array.from( | |
| new Set( | |
| Array.prototype.slice.call( | |
| document.getElementsByClassName("message") | |
| ).map( | |
| (match) => match.getAttribute("title") | |
| ).filter( | |
| (match) => /^Merge pull request #/.test(match) | |
| ) | |
| ) | |
| ) |
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
| \n\d+: ".*#(.*) from Marel/(.*)\\n\\n(.*)" | |
| - #$1 $3 ($2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment