@@ -63,7 +63,7 @@ inputs:
63
63
String suffix to append to the revision name. Revision names always start
64
64
with the service name automatically. For example, specifying `v1` for a
65
65
service named `helloworld`, would lead to a revision named
66
- `helloworld-v1`. This option is only applies to services.
66
+ `helloworld-v1`. This option only applies to services.
67
67
required : false
68
68
69
69
env_vars :
@@ -83,15 +83,15 @@ inputs:
83
83
merged). To remove all values, set the value to the literal string `{}`.
84
84
85
85
If both `env_vars` and `env_vars_file` are specified, the keys in
86
- `env_vars` will take precendence over the keys in `env_vars_file`.
86
+ `env_vars` will take precedence over the keys in `env_vars_file`.
87
87
required : false
88
88
89
89
env_vars_file :
90
90
description : |-
91
91
Path to a file on disk, relative to the workspace, that defines
92
92
environment variables. The file can be newline-separated KEY=VALUE pairs,
93
93
JSON, or YAML format. If both `env_vars` and `env_vars_file` are
94
- specified, the keys in env_vars will take precendence over the keys in
94
+ specified, the keys in env_vars will take precedence over the keys in
95
95
env_vars_file.
96
96
97
97
NAME=person
@@ -101,7 +101,7 @@ inputs:
101
101
described in `env_vars`. You do not have to escape YAML or JSON.
102
102
103
103
If both `env_vars` and `env_vars_file` are specified, the keys in
104
- `env_vars` will take precendence over the keys in `env_vars_file`.
104
+ `env_vars` will take precedence over the keys in `env_vars_file`.
105
105
106
106
**⚠️ DEPRECATION NOTICE:** This input is deprecated and will be removed in
107
107
the next major version release.
@@ -186,7 +186,7 @@ inputs:
186
186
187
187
tag :
188
188
description : |-
189
- Traffic tag to assign to the newly-created revision. This option is only
189
+ Traffic tag to assign to the newly-created revision. This option only
190
190
applies to services.
191
191
required : false
192
192
@@ -202,7 +202,7 @@ inputs:
202
202
command. This can be used to apply advanced features that are not exposed
203
203
via this GitHub Action. For Cloud Run services, this command will be
204
204
`gcloud run deploy`. For Cloud Run jobs, this command will be `gcloud jobs
205
- deploy.
205
+ deploy` .
206
206
207
207
with:
208
208
flags: '--add-cloudsql-instances=...'
@@ -225,7 +225,7 @@ inputs:
225
225
no_traffic :
226
226
description : |-
227
227
If true, the newly deployed revision will not receive traffic. This option
228
- is only applies to services.
228
+ only applies to services.
229
229
default : ' false'
230
230
required : false
231
231
@@ -241,7 +241,7 @@ inputs:
241
241
with:
242
242
revision_traffic: 'LATEST=100'
243
243
244
- This is mutually-exclusive with `tag_traffic`. This option is only applies
244
+ This is mutually-exclusive with `tag_traffic`. This option only applies
245
245
to services.
246
246
required : false
247
247
@@ -252,7 +252,7 @@ inputs:
252
252
with:
253
253
tag_traffic: 'my-tag=10' # percentage
254
254
255
- This is mutually-exclusive with `revision_traffic`. This option is only
255
+ This is mutually-exclusive with `revision_traffic`. This option only
256
256
applies to services.
257
257
required : false
258
258
@@ -261,7 +261,7 @@ inputs:
261
261
Space separate list of additional Cloud Run flags to pass to the `gcloud
262
262
run services update-traffic` command. This can be used to apply advanced
263
263
features that are not exposed via this GitHub Action. This flag only
264
- applies with `revision_traffic` or `tag_traffic` is set.
264
+ applies when `revision_traffic` or `tag_traffic` is set.
265
265
266
266
with:
267
267
traffic_flags: '--set-tags=...'
0 commit comments