Skip to content

Commit

Permalink
Default fail-fast to true (#279)
Browse files Browse the repository at this point in the history
  • Loading branch information
imranismail committed Oct 16, 2022
1 parent 32e634d commit 8757bab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Expand Up @@ -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'

0 comments on commit 8757bab

Please sign in to comment.