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 9036725284 add legacy clone option 5 years ago
samples add license headers 5 years ago
yaml add legacy clone option 5 years ago
.drone.yml update yaml 5 years ago
.gitignore support for yaml merge keys 5 years ago
CHANGELOG.md format should write zero value of bool 5 years ago
LICENSE improve headers 5 years ago
NOTICE Update notice [CI SKIP] 5 years ago
README.md revert pull request #17 5 years ago
go.mod tweak branch conversion logic per feedback 5 years ago
go.sum tweak branch conversion logic per feedback 5 years ago
main.go add repository address to convert command 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