feat(cmd/joj3): log sha as attr
All checks were successful
submodules sync / sync (push) Successful in 46s
build / build (push) Successful in 1m51s
build / trigger-build-image (push) Successful in 9s

This commit is contained in:
张泊明518370910136 2024-11-16 21:00:45 -05:00
parent be1d697fdb
commit a1f391d9de
GPG Key ID: D47306D7062CDA9D

View File

@ -56,6 +56,7 @@ func getSlogAttrs() []slog.Attr {
slog.String("confName", env.Attr.ConfName), slog.String("confName", env.Attr.ConfName),
slog.String("actor", env.Attr.Actor), slog.String("actor", env.Attr.Actor),
slog.String("repository", env.Attr.Repository), slog.String("repository", env.Attr.Repository),
slog.String("sha", env.Attr.Sha),
} }
} }