Created
March 1, 2019 14:54
-
-
Save swvitaliy/01f99c93099d58008fec3f4cb1b44e5a to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
( | |
echo '# Changes' | |
echo '' | |
git log --first-parent --pretty=format:'%s' \ | |
| grep -v '^update changelog' \ | |
| perl -p -e 's/^((v?[0-9]+\.?)+)$/\n## \1\n/g' \ | |
| perl -p -e 's/^([^#\s].*)$/* \1/g' | |
)> CHANGELOG.md |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment