Skip to content

Commit

Permalink
fix timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
hamishfagg committed Jun 15, 2023
1 parent 187f7bc commit 6b296ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ To use this action, your GitHub Actions runner needs to have the following insta
| environment-slug | no | N/A | Short name of the deployment environment (dev, prod, etc). Set this if you have a `values-<env>.yaml`. |
| helm-extra-args | no | N/A | Add additional/custom helm arguments/commands. |
| dry-run | no | false | Skip actual deployment and only show a diff. |
| timeout | no | 300 | Timeout time (s) for helm operations. |
| timeout | no | 300s | Timeout time for helm operations. |

## Example Usage

Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ inputs:
required: false
default: false
timeout:
description: "The timeout time (s) for helm operations."
description: "The timeout time for helm operations."
required: false
default: 300
default: 300s

runs:
using: 'composite'
Expand Down

0 comments on commit 6b296ad

Please sign in to comment.