fix: group = all when using tag
All checks were successful
submodules sync / sync (push) Successful in 43s
build / build (push) Successful in 1m38s
build / trigger-build-image (push) Successful in 9s

This commit is contained in:
张泊明518370910136 2025-10-05 01:50:54 -07:00
parent 47051675af
commit 398ac92a5c
GPG Key ID: D47306D7062CDA9D

View File

@ -102,8 +102,10 @@ func parseMsg(confRoot, confName, msg, tag string) (
return
}
} else {
conventionalCommit = new(ConventionalCommit)
conventionalCommit.Scope = tag
conventionalCommit = &ConventionalCommit{
Scope: tag,
Group: "all",
}
}
slog.Info("conventional commit", "commit", conventionalCommit)
confRoot = filepath.Clean(confRoot)