feat: Add global timeout support (#1487)

This commit is contained in:
Tom Keller
2025-09-11 13:32:59 -07:00
committed by GitHub
parent b845e0f4f4
commit 1584b8b0e2
4 changed files with 98 additions and 1 deletions
+1
View File
@@ -152,6 +152,7 @@ See [action.yml](./action.yml) for more detail.
| use-existing-credentials | When set, the action will check if existing credentials are valid and exit if they are. Defaults to false. | No |
| allowed-account-ids | A comma-delimited list of expected AWS account IDs. The action will fail if we receive credentials for the wrong account. | No |
| force-skip-oidc | When set, the action will skip using GitHub OIDC provider even if the id-token permission is set. | No |
| action-timeout-s | Global timeout for the action in seconds. If set to a value greater than 0, the action will fail if it takes longer than this time to complete. | No |
</details>
#### Adjust the retry mechanism