Skip to content

Commit 7699f83

Browse files
committed
chore: skip release note check due to monorepo
1 parent a0bfff7 commit 7699f83

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

cypress-slack-reporter-old/scripts/ci/release.sh

+6-6
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ git config user.name "${GITHUB_ACTOR}"
1616
# from the standard version tool before it runs
1717
RELEASE_NOTES="$(npx standard-version --dry-run | awk 'BEGIN { flag=0 } /^---$/ { if (flag == 0) { flag=1 } else { flag=2 }; next } flag == 1')"
1818
# Don't release if there are no changes
19-
if [ "$(echo "$RELEASE_NOTES" | wc -l)" -eq 1 ] ; then
20-
error "This release would have no release notes. Does it include changes?"
21-
echo " - You must have at least one fix / feat commit to generate release notes"
22-
echo "*** STOPPING RELEASE PROCESS ***"
23-
exit 1
24-
fi
19+
# if [ "$(echo "$RELEASE_NOTES" | wc -l)" -eq 1 ] ; then
20+
# error "This release would have no release notes. Does it include changes?"
21+
# echo " - You must have at least one fix / feat commit to generate release notes"
22+
# echo "*** STOPPING RELEASE PROCESS ***"
23+
# exit 1
24+
# fi
2525
# This is github actions' method for emitting multi-line values
2626
RELEASE_NOTES="${RELEASE_NOTES//'%'/'%25'}"
2727
RELEASE_NOTES="${RELEASE_NOTES//$'\n'/'%0A'}"

0 commit comments

Comments
 (0)