fail fast on github rate limit (#263)

This commit is contained in:
Philipp Riederer
2022-09-06 11:59:48 +02:00
committed by GitHub
parent 97446b23bf
commit 5bd9c67dee
5 changed files with 239 additions and 130 deletions

View File

@@ -8,10 +8,11 @@ Install any kustomize version as a step in your workflow
Every argument is optional.
| Input | Description |
| ------------------- | ------------------------------------------------------------------------------------------------------ |
| `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 **\***_ |
| Input | Description |
| ------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `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. |
## Usage