Skip to content

Commit b55e156

Browse files
ci(conventional-commits): remove spaces
Signed-off-by: Brooks Townsend <brooksmtownsend@gmail.com>
1 parent faad230 commit b55e156

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/check-conventional-commits.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -145,18 +145,18 @@ jobs:
145145
TYPE="${BASH_REMATCH[1]}"
146146
SCOPE="${BASH_REMATCH[3]}"
147147
if [[ "$line" =~ !: ]]; then
148-
LABELS+=("impact: breaking")
148+
LABELS+=("impact:breaking")
149149
fi
150150
case "$TYPE" in
151-
fix) LABELS+=("type: fix") ;;
152-
feat) LABELS+=("type: feature") ;;
153-
ci) LABELS+=("type: ci") ;;
154-
docs) LABELS+=("type: docs") ;;
151+
fix) LABELS+=("type:fix") ;;
152+
feat) LABELS+=("type:feature") ;;
153+
ci) LABELS+=("type:ci") ;;
154+
docs) LABELS+=("type:docs") ;;
155155
esac
156156
case "$SCOPE" in
157-
wash|wash-cli|wash-lib) LABELS+=("scope: wash") ;;
158-
wasmcloud|host|runtime|core) LABELS+=("scope: wasmcloud") ;;
159-
control-interface|ctl) LABELS+=("scope: control-interface") ;;
157+
wash|wash-cli|wash-lib) LABELS+=("scope:wash") ;;
158+
wasmcloud|host|runtime|core) LABELS+=("scope:wasmcloud") ;;
159+
control-interface|ctl) LABELS+=("scope:control-interface") ;;
160160
"") ;; # Ignore empty scope
161161
*) ;; # Ignore unknown scopes. To enable adding any scope as a label, use this: # *) LABELS+=("$SCOPE") ;;
162162
esac

0 commit comments

Comments
 (0)