From b0fe4a4ca2c0593809b39671b177e8604aeb941a Mon Sep 17 00:00:00 2001 From: Sergey Vilgelm Date: Sat, 26 Feb 2022 08:07:24 -0800 Subject: [PATCH] update descriptions --- README.md | 7 ++++--- action.yml | 10 ++++++---- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index e7e98ba..9a0dd81 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/action.yml b/action.yml index df937a6..45e757b 100644 --- a/action.yml +++ b/action.yml @@ -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"