YAML Best Practices - abcxyz/readability GitHub Wiki
Quote all YAML strings!
# Good
abc: 'xyz'
key1: '${{ env.VAL1 }}'
# Bad
foo: bar
key2: ${{ env.VAL2 }}
License Header
YAML files should also license header as we consider them as code.
# Good
abc: 'xyz'
key1: '${{ env.VAL1 }}'
# Bad
foo: bar
key2: ${{ env.VAL2 }}
YAML files should also license header as we consider them as code.