drone-yaml/yaml/pretty/signature.go

19 lines
451 B
Go
Raw Normal View History

// Copyright (c) 2019, Drone IO Inc.
// Copyright (c) 2021, Robert Kaussow <mail@thegeeklab.de>
2019-02-10 20:00:16 +01:00
2019-01-23 00:44:17 +01:00
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("---")
2019-01-23 00:44:17 +01:00
w.WriteTagValue("version", v.Version)
w.WriteTagValue("kind", v.Kind)
w.WriteTagValue("hmac", v.Hmac)
_ = w.WriteByte('\n')
_ = w.WriteByte('\n')
2019-01-23 00:44:17 +01:00
}