Default fail-fast to true (#279)

This commit is contained in:
Imran Ismail
2022-10-17 02:13:54 +08:00
committed by GitHub
parent 32e634d4e0
commit 8757bab9d6
2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ Every argument is optional.
| ------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `github-token` | PAT (Personal Access Token) for authorizing the repository.<br>_Defaults to **\${{ github.token }}**_ |
| `kustomize-version` | Semver of kustomize to use. Examples: `10.x`, `10.15.1`, `>=10.15.0`<br>_Defaults to **\***_ |
| `fail-fast` | When github rate limits us, fail immediately or retry after the timeout that github wishes from us? Note: When setting this to `false` (which is the default!), a github workflow might accrue a long (and possibly expensive) runtime. |
| `fail-fast` | When github rate limits us, fail immediately or retry after the timeout that github wishes from us? <br>Note: When this is set to `false`, a github workflow might accrue a long (and possibly expensive) runtime.<br>_Defaults to **true**_ |
## Usage

View File

@@ -16,7 +16,7 @@ inputs:
fail-fast:
description: 'Fail quickly on github rate limit. "false" or "true".'
required: false
default: 'false'
default: 'true'
runs:
using: 'node16'
main: 'dist/index.js'