update descriptions

This commit is contained in:
Sergey Vilgelm 2022-02-26 08:07:24 -08:00
parent 9a4f36fa43
commit b0fe4a4ca2
No known key found for this signature in database
GPG key ID: 08D0E2FF778887E6
2 changed files with 10 additions and 7 deletions

View file

@ -55,14 +55,15 @@ jobs:
# Optional: show only new issues if it's a pull request. The default value is `false`.
# only-new-issues: true
# Optional: if set to true then the all caching functionality will be complete disabled,
# takes precedence over all other caching options.
# skip-cache: true
# Optional: if set to true then the action don't cache or restore ~/go/pkg.
# skip-pkg-cache: true
# Optional: if set to true then the action don't cache or restore ~/.cache/go-build.
# skip-build-cache: true
# Optional: if set to true then the all caching functionality willl be complete disabled.
# skip-cache: true
```
We recommend running this action in a job separate from other jobs (`go test`, etc)

View file

@ -20,6 +20,12 @@ inputs:
description: "if set to true and the action runs on a pull request - the action outputs only newly found issues"
default: false
required: true
skip-cache:
description: |
if set to true then the all caching functionality will be complete disabled,
takes precedence over all other caching options.
default: false
required: true
skip-pkg-cache:
description: "if set to true then the action doesn't cache or restore ~/go/pkg."
default: false
@ -28,10 +34,6 @@ inputs:
description: "if set to true then the action doesn't cache or restore ~/.cache/go-build."
default: false
required: true
skip-cache:
description: "if set to true then the all caching functionality willl be complete disabled."
default: false
required: true
runs:
using: "node16"
main: "dist/run/index.js"