Skip to content

Commit 4b61474

Browse files
committed
docs: organize action manifest
- add missing debug option
1 parent bae7e22 commit 4b61474

File tree

1 file changed

+15
-8
lines changed

1 file changed

+15
-8
lines changed

action.yml

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ inputs:
3434
description: "If set to true and the action runs on a pull request, the action outputs only newly found issues."
3535
default: 'false'
3636
required: false
37+
args:
38+
description: "golangci-lint command line arguments."
39+
default: ""
40+
required: false
3741
skip-cache:
3842
description: |
3943
If set to true, all caching functionality will be completely disabled.
@@ -42,22 +46,25 @@ inputs:
4246
required: false
4347
skip-save-cache:
4448
description: |
45-
If set to true, the action will not save any caches, but it may still
46-
restore existing caches, subject to other options.
49+
If set to true, the action will not save any caches,
50+
but it may still restore existing caches, subject to other options.
4751
default: 'false'
4852
required: false
53+
cache-invalidation-interval:
54+
description: "Periodically invalidate a cache when new code is added (number of days)."
55+
default: '7'
56+
required: false
4957
problem-matchers:
5058
description: "Force the usage of the embedded problem matchers."
5159
default: 'false'
5260
required: false
53-
args:
54-
description: "golangci-lint command line arguments."
61+
debug:
62+
description: |
63+
Debug options for the action.
64+
List of comma separated options, the values are `cache`, `clean`.
65+
example: "cache,clean"
5566
default: ""
5667
required: false
57-
cache-invalidation-interval:
58-
description: "Periodically invalidate a cache when new code is added (number of days)."
59-
default: '7'
60-
required: false
6168
runs:
6269
using: "node24"
6370
main: "dist/run/index.js"

0 commit comments

Comments
 (0)