kjuulh
46cc160764
updated roadmap updated roadmap Add a basic readme (#15) Co-authored-by: kjuulh <contact@kjuulh.io> Reviewed-on: kjuulh/kraken#15 fix readme Add readme with stuff more roadmap items update formatting formatting 2 more setup with semantic with semantic 2 revert add releaserc with releaser with kraken Update roadmap rename rename feature/move-command (#18) Co-authored-by: kjuulh <contact@kjuulh.io> Reviewed-on: #18 fix/require-two-pushes (#20) Co-authored-by: kjuulh <contact@kjuulh.io> Reviewed-on: #20
33 lines
735 B
Go
33 lines
735 B
Go
package schema
|
|
|
|
import "gopkg.in/yaml.v3"
|
|
|
|
type OctopushSchema struct {
|
|
ApiVersion string `yaml:"apiVersion"`
|
|
Name string `yaml:"name"`
|
|
Select struct {
|
|
Repositories []string `yaml:"repositories"`
|
|
Providers []struct {
|
|
Gitea string `yaml:"gitea"`
|
|
Organisation string `yaml:"organisation"`
|
|
} `yaml:"providers"`
|
|
} `yaml:"select"`
|
|
Actions []struct {
|
|
Type string `yaml:"type"`
|
|
Entry string `yaml:"entry"`
|
|
} `yaml:"actions"`
|
|
Queries []struct {
|
|
Type string `yaml:"type"`
|
|
Query string `yaml:"query"`
|
|
} `yaml:"queries"`
|
|
}
|
|
|
|
func Unmarshal(raw string) (*OctopushSchema, error) {
|
|
k := &OctopushSchema{}
|
|
err := yaml.Unmarshal([]byte(raw), k)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return k, nil
|
|
}
|