Skip to content

Commit

Permalink
Change default output format to parsable (#17)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
ibiqlik committed Apr 23, 2021
1 parent 05a42da commit c2e8ecc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c2e8ecc

Please sign in to comment.