File tree 1 file changed +6
-6
lines changed
cypress-slack-reporter-old/scripts/ci
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -16,12 +16,12 @@ git config user.name "${GITHUB_ACTOR}"
16
16
# from the standard version tool before it runs
17
17
RELEASE_NOTES=" $( npx standard-version --dry-run | awk ' BEGIN { flag=0 } /^---$/ { if (flag == 0) { flag=1 } else { flag=2 }; next } flag == 1' ) "
18
18
# 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
25
25
# This is github actions' method for emitting multi-line values
26
26
RELEASE_NOTES=" ${RELEASE_NOTES// ' %' / ' %25' } "
27
27
RELEASE_NOTES=" ${RELEASE_NOTES// $' \n ' / ' %0A' } "
You can’t perform that action at this time.
0 commit comments