mirror of
https://github.com/thegeeklab/drone-yaml.git
synced 2024-11-22 18:10:40 +00:00
16 lines
339 B
Go
16 lines
339 B
Go
|
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')
|
||
|
}
|