We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 527f0bb commit b783b05Copy full SHA for b783b05
.github/workflows/cd.yml
@@ -90,17 +90,13 @@ jobs:
90
while read line; do
91
case "$line" in
92
*'feat:'*)
93
+ echo "has_feat=true because of [$line]"
94
has_feat=true
95
;;
- *'fix:'*)
96
- patch=$((patch + 1))
97
- ;;
98
*'BREAKING CHANGE:'*)
+ echo "has_breaking_change=true because of [$line]"
99
has_breaking_change=true
100
101
- *)
102
103
104
esac
105
done
106
if [ "$has_breaking_change" = true ]; then
0 commit comments