Skip to content

Instantly share code, notes, and snippets.

@arnlaugsson
Last active December 13, 2018 17:41
Show Gist options
  • Select an option

  • Save arnlaugsson/4347912c7357515b060362381d8abc2f to your computer and use it in GitHub Desktop.

Select an option

Save arnlaugsson/4347912c7357515b060362381d8abc2f to your computer and use it in GitHub Desktop.
Find matching PRs in console
Array.from(
new Set(
Array.prototype.slice.call(
document.getElementsByClassName("message")
).map(
(match) => match.getAttribute("title")
).filter(
(match) => /^Merge pull request #/.test(match)
)
)
)
\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