mirror of
https://github.com/thegeeklab/drone-yaml.git
synced 2024-11-15 23:00:40 +00:00
22 lines
526 B
Go
22 lines
526 B
Go
// Copyright 2019 Drone.IO Inc. All rights reserved.
|
|
// Use of this source code is governed by the Drone Non-Commercial License
|
|
// that can be found in the LICENSE file.
|
|
|
|
// +build !oss
|
|
|
|
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')
|
|
}
|