1
0
forked from JOJ/JOJ3

fix: group = all when using tag

This commit is contained in:
张泊明518370910136 2025-10-05 01:50:54 -07:00
parent 47051675af
commit 398ac92a5c
Signed by untrusted user: 张泊明518370910136
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)