Skip to content

Commit 7a954ab

Browse files
Added timeout input description to README (#441)
* Added timeout input description to README * Changed position of timeout in action.yml and README
1 parent 7395c39 commit 7a954ab

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,10 @@ Following are the key capabilities of this action:
123123
<td>server-side </br></br>(Optional)</td>
124124
<td>The apply command runs in the server instead of the client. If true then '--server-side' argument is added to the apply command.</td>
125125
</tr>
126+
<tr>
127+
<td>timeout</br></br>(Optional)</td>
128+
<td>Default value: 10m</br>Timeout for the rollout status. Accepts time units like '10m', '1h', '30s'. If only a number is provided (e.g., '30'), it is assumed to be minutes.</td>
129+
</tr>
126130
<tr>
127131
<td>annotate-resources</br></br>(Optional)</td>
128132
<td>Acceptable values: true/false</br>Default value: true</br>Switch whether to annotate the resources or not. If set to false all annotations are skipped completely.</td>

action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ inputs:
5959
description: 'The apply command runs in the server instead of the client. If true then --server-side argument is added to the apply command.'
6060
required: false
6161
default: false
62+
timeout:
63+
description: 'Timeout for the rollout status'
64+
required: false
65+
default: 10m
6266
token:
6367
description: 'Github token'
6468
default: ${{ github.token }}
@@ -84,10 +88,6 @@ inputs:
8488
skip-tls-verify:
8589
description: True if the insecure-skip-tls-verify option should be used. Input should be 'true' or 'false'.
8690
default: false
87-
timeout:
88-
description: 'Timeout for the rollout status'
89-
required: false
90-
default: 10m
9191
resource-type:
9292
description: Either Microsoft.ContainerService/managedClusters or Microsoft.ContainerService/fleets'.
9393
required: false

0 commit comments

Comments
 (0)