mirror of
https://github.com/gradle/actions
synced 2024-11-23 18:02:13 +00:00
Improve parameter description for 'cache-cleanup'
Some checks are pending
CI-check-and-unit-test / check-format-and-unit-test (push) Waiting to run
CI-codeql / Analyze (javascript-typescript) (push) Waiting to run
CI-init-script-check / test-init-scripts (push) Waiting to run
CI-integ-test / build-distribution (push) Waiting to run
CI-integ-test / caching-integ-tests (push) Blocked by required conditions
CI-integ-test / other-integ-tests (push) Blocked by required conditions
CI-update-dist / update-dist (push) Waiting to run
Some checks are pending
CI-check-and-unit-test / check-format-and-unit-test (push) Waiting to run
CI-codeql / Analyze (javascript-typescript) (push) Waiting to run
CI-init-script-check / test-init-scripts (push) Waiting to run
CI-integ-test / build-distribution (push) Waiting to run
CI-integ-test / caching-integ-tests (push) Blocked by required conditions
CI-integ-test / other-integ-tests (push) Blocked by required conditions
CI-update-dist / update-dist (push) Waiting to run
This commit is contained in:
parent
9edf610422
commit
add58192d1
2 changed files with 4 additions and 2 deletions
|
@ -60,7 +60,8 @@ inputs:
|
||||||
cache-cleanup:
|
cache-cleanup:
|
||||||
description: |
|
description: |
|
||||||
Specifies if the action should attempt to remove any stale/unused entries from the Gradle User Home prior to saving to the GitHub Actions cache.
|
Specifies if the action should attempt to remove any stale/unused entries from the Gradle User Home prior to saving to the GitHub Actions cache.
|
||||||
By default, no cleanup is performed. It can be configured to run every time, or only when all Gradle builds succeed for the Job.
|
By default ('on-success'), cleanup is performed when all Gradle builds succeed for the Job.
|
||||||
|
This behaviour can be disabled ('never'), or configured to always run irrespective of the build outcome ('always').
|
||||||
Valid values are 'never', 'on-success' and 'always'.
|
Valid values are 'never', 'on-success' and 'always'.
|
||||||
required: false
|
required: false
|
||||||
default: 'on-success'
|
default: 'on-success'
|
||||||
|
|
|
@ -43,7 +43,8 @@ inputs:
|
||||||
cache-cleanup:
|
cache-cleanup:
|
||||||
description: |
|
description: |
|
||||||
Specifies if the action should attempt to remove any stale/unused entries from the Gradle User Home prior to saving to the GitHub Actions cache.
|
Specifies if the action should attempt to remove any stale/unused entries from the Gradle User Home prior to saving to the GitHub Actions cache.
|
||||||
By default, no cleanup is performed. It can be configured to run every time, or only when all Gradle builds succeed for the Job.
|
By default ('on-success'), cleanup is performed when all Gradle builds succeed for the Job.
|
||||||
|
This behaviour can be disabled ('never'), or configured to always run irrespective of the build outcome ('always').
|
||||||
Valid values are 'never', 'on-success' and 'always'.
|
Valid values are 'never', 'on-success' and 'always'.
|
||||||
required: false
|
required: false
|
||||||
default: 'on-success'
|
default: 'on-success'
|
||||||
|
|
Loading…
Reference in a new issue