Skip to content

Commit 85fa3a8

Browse files
authored
Make "wait" default to false (#581)
This was an unintentional breaking change, but we didn't catch it because GitHub changed how floating tags work.
1 parent 012c06a commit 85fa3a8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,8 +211,8 @@ jobs:
211211
- <a name="__input_no_traffic"></a><a href="#user-content-__input_no_traffic"><code>no_traffic</code></a>: _(Optional, default: `false`)_ If true, the newly deployed revision will not receive traffic. This option
212212
only applies to services.
213213

214-
- <a name="__input_wait"></a><a href="#user-content-__input_wait"><code>wait</code></a>: _(Optional, default: `true`)_ If true, the action will wait for the job to complete before exiting. This
215-
option only applies to jobs.
214+
- <a name="__input_wait"></a><a href="#user-content-__input_wait"><code>wait</code></a>: _(Optional, default: `false`)_ If true, the action will execute and wait for the job to complete before
215+
exiting. This option only applies to jobs.
216216

217217
- <a name="__input_revision_traffic"></a><a href="#user-content-__input_revision_traffic"><code>revision_traffic</code></a>: _(Optional)_ Comma-separated list of revision traffic assignments.
218218

action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -231,9 +231,9 @@ inputs:
231231

232232
wait:
233233
description: |-
234-
If true, the action will wait for the job to complete before exiting. This
235-
option only applies to jobs.
236-
default: 'true'
234+
If true, the action will execute and wait for the job to complete before
235+
exiting. This option only applies to jobs.
236+
default: 'false'
237237
required: false
238238

239239
revision_traffic:

0 commit comments

Comments
 (0)