We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe19838 commit d4b78f1Copy full SHA for d4b78f1
README.md
@@ -322,15 +322,20 @@ with:
322
323
(optional)
324
325
-If set to true and the action verify the configuration file against the JSONSchema.
+This option is `true` by default.
326
+
327
+If the GitHub Action detects configuration file the validation will be performed unless this option is set to `false`.
328
+If there is no configuration file, the validation is skipped.
329
330
+The JSONSchema used to validate the configuration depends on the version of golangci-lint you are using.
331
332
<details>
333
<summary>Example</summary>
334
335
```yml
336
uses: golangci/golangci-lint-action@v6
337
with:
- verify: true
338
+ verify: false
339
# ...
340
```
341
0 commit comments