docs: organize action manifest

- add missing debug option
This commit is contained in:
Fernandez Ludovic 2025-11-20 17:22:39 +01:00
parent bae7e22b0f
commit 4b6147430b

View file

@ -34,6 +34,10 @@ inputs:
description: "If set to true and the action runs on a pull request, the action outputs only newly found issues." description: "If set to true and the action runs on a pull request, the action outputs only newly found issues."
default: 'false' default: 'false'
required: false required: false
args:
description: "golangci-lint command line arguments."
default: ""
required: false
skip-cache: skip-cache:
description: | description: |
If set to true, all caching functionality will be completely disabled. If set to true, all caching functionality will be completely disabled.
@ -42,22 +46,25 @@ inputs:
required: false required: false
skip-save-cache: skip-save-cache:
description: | description: |
If set to true, the action will not save any caches, but it may still If set to true, the action will not save any caches,
restore existing caches, subject to other options. but it may still restore existing caches, subject to other options.
default: 'false' default: 'false'
required: false required: false
cache-invalidation-interval:
description: "Periodically invalidate a cache when new code is added (number of days)."
default: '7'
required: false
problem-matchers: problem-matchers:
description: "Force the usage of the embedded problem matchers." description: "Force the usage of the embedded problem matchers."
default: 'false' default: 'false'
required: false required: false
args: debug:
description: "golangci-lint command line arguments." description: |
Debug options for the action.
List of comma separated options, the values are `cache`, `clean`.
example: "cache,clean"
default: "" default: ""
required: false required: false
cache-invalidation-interval:
description: "Periodically invalidate a cache when new code is added (number of days)."
default: '7'
required: false
runs: runs:
using: "node24" using: "node24"
main: "dist/run/index.js" main: "dist/run/index.js"