We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3887cab commit 7eb02c2Copy full SHA for 7eb02c2
start.sh
@@ -60,6 +60,13 @@ case "${1-}" in
60
echo "-- creating changelog"
61
git-conventional-commits changelog --release "$VERSION" --file CHANGELOG.MD
62
63
+ read -r -p "-- changelog ok? [Y/n]" response
64
+ response=${response,,} # tolower
65
+ if [[ $response =~ ^(no|n) ]] ; then
66
+ echo "aborting"
67
+ exit 1
68
+ fi
69
+
70
echo "-- creating commit for changelog"
71
git commit -am"doc(release): create ${VERSION} change log entry"
72
0 commit comments