mirror of
https://github.com/thegeeklab/drone-yaml.git
synced 2024-11-01 01:00:41 +00:00
19 lines
451 B
Go
19 lines
451 B
Go
// Copyright (c) 2019, Drone IO Inc.
|
|
// Copyright (c) 2021, Robert Kaussow <mail@thegeeklab.de>
|
|
|
|
package pretty
|
|
|
|
import (
|
|
"github.com/drone/drone-yaml/yaml"
|
|
)
|
|
|
|
// helper function pretty prints the signature resource.
|
|
func printSignature(w writer, v *yaml.Signature) {
|
|
_, _ = w.WriteString("---")
|
|
w.WriteTagValue("version", v.Version)
|
|
w.WriteTagValue("kind", v.Kind)
|
|
w.WriteTagValue("hmac", v.Hmac)
|
|
_ = w.WriteByte('\n')
|
|
_ = w.WriteByte('\n')
|
|
}
|