diff --git a/README.md b/README.md index 0788ff75a8..22c4874813 100644 --- a/README.md +++ b/README.md @@ -322,7 +322,12 @@ with: (optional) -If set to true and the action verify the configuration file against the JSONSchema. +This option is `true` by default. + +If the GitHub Action detects configuration file the validation will be performed unless this option is set to `false`. +If there is no configuration file, the validation is skipped. + +The JSONSchema used to validate the configuration depends on the version of golangci-lint you are using.
Example @@ -330,7 +335,7 @@ If set to true and the action verify the configuration file against the JSONSche ```yml uses: golangci/golangci-lint-action@v6 with: - verify: true + verify: false # ... ```