Go package for parsing and compiling the drone yaml file
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
Brad Rydzewski fc54b2d17a Update notice [CI SKIP] 5 years ago
samples add license headers 5 years ago
yaml document why Manifest.MarshalYAML is disabled 5 years ago
.drone.yml enable modules 5 years ago
.gitignore initial commit 6 years ago
LICENSE Added LICENSE 5 years ago
NOTICE Update notice [CI SKIP] 5 years ago
README.md initial commit 6 years ago
go.mod enable modules 5 years ago
go.sum enable modules 5 years ago
main.go add license headers 5 years ago

README.md

Package yaml provides a parser, linter, formatter and compiler for the drone configuration file format.

Lint the yaml file:

$ drone-yaml lint samples/simple.yml

Format the yaml file:

$ drone-yaml fmt samples/simple.yml
$ drone-yaml fmt samples/simple.yml --save

Sign the yaml file using a 32-bit secret key:

$ drone-yaml sign 642909eb4c3d47e33999235c0598353c samples/simple.yml
$ drone-yaml sign 642909eb4c3d47e33999235c0598353c samples/simple.yml --save

Verify the yaml file signature:

$ drone-yaml verify 642909eb4c3d47e33999235c0598353c samples/simple.yml

Compile the yaml file:

$ drone-yaml compile samples/simple.yml > samples/simple.json