Skip to content

Commit 3cbf68e

Browse files
committed
add lower
1 parent 8f7bae0 commit 3cbf68e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

actionsdotnetactcompat/act_worker.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ func (f *ghaFormatter) Format(entry *logrus.Entry) ([]byte, error) {
168168
command, _ := entry.Data["command"].(string)
169169
arg, _ := entry.Data["arg"].(string)
170170
raw, _ := entry.Data["raw"].(string)
171-
switch command {
171+
switch strings.ToLower(command) {
172172
case "group":
173173
msg = "##[group]" + arg
174174
case "endgroup":

0 commit comments

Comments
 (0)