Skip to content

Instantly share code, notes, and snippets.

@christianvuerings
Last active August 3, 2017 14:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save christianvuerings/5224e7d375621594c46bf1c9e0494416 to your computer and use it in GitHub Desktop.
Save christianvuerings/5224e7d375621594c46bf1c9e0494416 to your computer and use it in GitHub Desktop.
Gestalt release notes generation
// Gestalt release notes generation
// 1. Go to https://github.com/pinterest/gestalt/commits/master
// 2. Run the script below
[...document.querySelectorAll('.commit-title')]
.map(commitTitle => `* ${commitTitle.innerText.replace(' …', '')}`)
.join("\n");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment