mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-13 12:41:21 +00:00
e34daae0cf
* Refactor: move cncd/pipeline/ to pipeline/ * Refactor: move pipeline/pipeline/ to pipeline/
34 lines
657 B
Go
34 lines
657 B
Go
package yaml
|
|
|
|
import "gopkg.in/yaml.v3"
|
|
|
|
type (
|
|
// Secrets defines a collection of secrets.
|
|
Secrets struct {
|
|
Secrets []*Secret
|
|
}
|
|
|
|
// Secret defines a container secret.
|
|
Secret struct {
|
|
Source string `yaml:"source"`
|
|
Target string `yaml:"target"`
|
|
}
|
|
)
|
|
|
|
// UnmarshalYAML implements the Unmarshaller interface.
|
|
func (s *Secrets) UnmarshalYAML(value *yaml.Node) error {
|
|
y, _ := yaml.Marshal(value)
|
|
|
|
var strslice []string
|
|
err := yaml.Unmarshal(y, &strslice)
|
|
if err == nil {
|
|
for _, str := range strslice {
|
|
s.Secrets = append(s.Secrets, &Secret{
|
|
Source: str,
|
|
Target: str,
|
|
})
|
|
}
|
|
return nil
|
|
}
|
|
return yaml.Unmarshal(y, &s.Secrets)
|
|
}
|