File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -145,18 +145,18 @@ jobs:
145
145
TYPE="${BASH_REMATCH[1]}"
146
146
SCOPE="${BASH_REMATCH[3]}"
147
147
if [[ "$line" =~ !: ]]; then
148
- LABELS+=("impact: breaking")
148
+ LABELS+=("impact:breaking")
149
149
fi
150
150
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") ;;
155
155
esac
156
156
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") ;;
160
160
"") ;; # Ignore empty scope
161
161
*) ;; # Ignore unknown scopes. To enable adding any scope as a label, use this: # *) LABELS+=("$SCOPE") ;;
162
162
esac
You can’t perform that action at this time.
0 commit comments