From c2e8eccd2294a383aea5ce050b0e8dc1c92bee5a Mon Sep 17 00:00:00 2001 From: Ilir Bekteshi Date: Fri, 23 Apr 2021 12:03:45 +0200 Subject: [PATCH] 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 --- README.md | 2 +- action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f49c1cd..b251320 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/action.yml b/action.yml index 4e286da..dafe699 100644 --- a/action.yml +++ b/action.yml @@ -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