You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## What's Changed
* Bump the npm_and_yarn group across 1 directory with 2 updates by
@dependabot in
#553
* security: bump undici from 5.28.4 to 5.28.5 in the npm_and_yarn group
by @dependabot in
#559
* Update action.yml to fix README typos by @ethanknights in
#557
* Update deps by @sethvargo in
#560
## New Contributors
* @ethanknights made their first contribution in
#557
**Full Changelog**:
v2.7.2...v2.7.3
Copy file name to clipboardExpand all lines: README.md
+10-10
Original file line number
Diff line number
Diff line change
@@ -83,7 +83,7 @@ jobs:
83
83
- <a name="suffix"></a><a href="#user-content-suffix"><code>suffix</code></a>: _(Optional)_ String suffix to append to the revision name. Revision names always start
84
84
with the service name automatically. For example, specifying `v1` for a
85
85
service named `helloworld`, would lead to a revision named
86
-
`helloworld-v1`. This option is only applies to services.
86
+
`helloworld-v1`. This option only applies to services.
87
87
88
88
- <a name="env_vars"></a><a href="#user-content-env_vars"><code>env_vars</code></a>: _(Optional)_ List of environment variables that should be set in the environment.
89
89
These are comma-separated or newline-separated `KEY=VALUE`. Keys or values
@@ -100,12 +100,12 @@ jobs:
100
100
merged). To remove all values, set the value to the literal string `{}`.
101
101
102
102
If both `env_vars` and `env_vars_file` are specified, the keys in
103
-
`env_vars`will take precendence over the keys in `env_vars_file`.
103
+
`env_vars`will take precedence over the keys in `env_vars_file`.
104
104
105
105
- <a name="env_vars_file"></a><a href="#user-content-env_vars_file"><code>env_vars_file</code></a>: _(Optional)_ Path to a file on disk, relative to the workspace, that defines
106
106
environment variables. The file can be newline-separated KEY=VALUE pairs,
107
107
JSON, or YAML format. If both `env_vars` and `env_vars_file` are
108
-
specified, the keys in env_vars will take precendence over the keys in
108
+
specified, the keys in env_vars will take precedence over the keys in
109
109
env_vars_file.
110
110
111
111
NAME=person
@@ -115,7 +115,7 @@ jobs:
115
115
described in `env_vars`. You do not have to escape YAML or JSON.
116
116
117
117
If both `env_vars` and `env_vars_file` are specified, the keys in
118
-
`env_vars`will take precendence over the keys in `env_vars_file`.
118
+
`env_vars`will take precedence over the keys in `env_vars_file`.
119
119
120
120
**⚠️ DEPRECATION NOTICE:** This input is deprecated and will be removed in
121
121
the next major version release.
@@ -179,7 +179,7 @@ jobs:
179
179
180
180
Setting this to `true` will skip adding these special labels.
181
181
182
-
- <a name="tag"></a><a href="#user-content-tag"><code>tag</code></a>: _(Optional)_ Traffic tag to assign to the newly-created revision. This option is only
182
+
- <a name="tag"></a><a href="#user-content-tag"><code>tag</code></a>: _(Optional)_ Traffic tag to assign to the newly-created revision. This option only
183
183
applies to services.
184
184
185
185
- <a name="timeout"></a><a href="#user-content-timeout"><code>timeout</code></a>: _(Optional)_ Maximum request execution time, specified as a duration like "10m5s" for
@@ -189,7 +189,7 @@ jobs:
189
189
command. This can be used to apply advanced features that are not exposed
190
190
via this GitHub Action. For Cloud Run services, this command will be
191
191
`gcloud run deploy`. For Cloud Run jobs, this command will be `gcloud jobs
192
-
deploy.
192
+
deploy`.
193
193
194
194
with:
195
195
flags: '--add-cloudsql-instances=...'
@@ -209,7 +209,7 @@ jobs:
209
209
version and subcommand.
210
210
211
211
- <a name="no_traffic"></a><a href="#user-content-no_traffic"><code>no_traffic</code></a>: _(Optional, default: `false`)_ If true, the newly deployed revision will not receive traffic. This option
212
-
is only applies to services.
212
+
only applies to services.
213
213
214
214
- <a name="revision_traffic"></a><a href="#user-content-revision_traffic"><code>revision_traffic</code></a>: _(Optional)_ Comma-separated list of revision traffic assignments.
215
215
@@ -221,21 +221,21 @@ jobs:
221
221
with:
222
222
revision_traffic: 'LATEST=100'
223
223
224
-
This is mutually-exclusive with `tag_traffic`. This option is only applies
224
+
This is mutually-exclusive with `tag_traffic`. This option only applies
225
225
to services.
226
226
227
227
- <a name="tag_traffic"></a><a href="#user-content-tag_traffic"><code>tag_traffic</code></a>: _(Optional)_ Comma-separated list of tag traffic assignments.
228
228
229
229
with:
230
230
tag_traffic: 'my-tag=10'# percentage
231
231
232
-
This is mutually-exclusive with `revision_traffic`. This option is only
232
+
This is mutually-exclusive with `revision_traffic`. This option only
233
233
applies to services.
234
234
235
235
- <a name="update_traffic_flags"></a><a href="#user-content-update_traffic_flags"><code>update_traffic_flags</code></a>: _(Optional)_ Space separate list of additional Cloud Run flags to pass to the `gcloud
236
236
run services update-traffic` command. This can be used to apply advanced
237
237
features that are not exposed via this GitHub Action. This flag only
238
-
applies with `revision_traffic` or `tag_traffic` is set.
238
+
applies when `revision_traffic` or `tag_traffic` is set.
0 commit comments