mirror of
https://github.com/ibiqlik/action-yamllint.git
synced 2024-11-21 22:00:57 -05:00
Change default output format to parsable (#17)
* Change default output format to parsable `github` format is barely usable in the logs where it only shows that errors/warnings occurred but not which file:line. * Update README.md
This commit is contained in:
parent
05a42da02e
commit
c2e8eccd22
2 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@ Simple as:
|
|||
- `file1.yaml`
|
||||
- `file1.yaml file2.yaml`
|
||||
- `kustomize/**/*.yaml mychart/*values.yaml`
|
||||
- `format` - Format for parsing output [parsable,standard,colored,github,auto] (default: github)
|
||||
- `format` - Format for parsing output [parsable,standard,colored,github,auto] (default: parsable)
|
||||
- `strict` - Return non-zero exit code on warnings as well as errors [true,false] (default: false)
|
||||
|
||||
**Note:** If `.yamllint` configuration file exists in your root folder, yamllint will automatically use it.
|
||||
|
|
|
@ -15,7 +15,7 @@ inputs:
|
|||
format:
|
||||
description: 'Format for parsing output [parsable,standard,colored,github,auto]'
|
||||
required: false
|
||||
default: "github"
|
||||
default: "parsable"
|
||||
strict:
|
||||
description: 'Return non-zero exit code on warnings as well as errors'
|
||||
required: false
|
||||
|
|
Loading…
Reference in a new issue