Skip to content

Commit 9c5864e

Browse files
Release: v2.7.3 (#561)
## 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
1 parent 5c25051 commit 9c5864e

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
- <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
8484
with the service name automatically. For example, specifying `v1` for a
8585
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.
8787

8888
- <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.
8989
These are comma-separated or newline-separated `KEY=VALUE`. Keys or values
@@ -100,12 +100,12 @@ jobs:
100100
merged). To remove all values, set the value to the literal string `{}`.
101101

102102
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`.
104104

105105
- <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
106106
environment variables. The file can be newline-separated KEY=VALUE pairs,
107107
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
109109
env_vars_file.
110110

111111
NAME=person
@@ -115,7 +115,7 @@ jobs:
115115
described in `env_vars`. You do not have to escape YAML or JSON.
116116

117117
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`.
119119

120120
**⚠️ DEPRECATION NOTICE:** This input is deprecated and will be removed in
121121
the next major version release.
@@ -179,7 +179,7 @@ jobs:
179179

180180
Setting this to `true` will skip adding these special labels.
181181

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
183183
applies to services.
184184

185185
- <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:
189189
command. This can be used to apply advanced features that are not exposed
190190
via this GitHub Action. For Cloud Run services, this command will be
191191
`gcloud run deploy`. For Cloud Run jobs, this command will be `gcloud jobs
192-
deploy.
192+
deploy`.
193193

194194
with:
195195
flags: '--add-cloudsql-instances=...'
@@ -209,7 +209,7 @@ jobs:
209209
version and subcommand.
210210

211211
- <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.
213213

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

@@ -221,21 +221,21 @@ jobs:
221221
with:
222222
revision_traffic: 'LATEST=100'
223223

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
225225
to services.
226226

227227
- <a name="tag_traffic"></a><a href="#user-content-tag_traffic"><code>tag_traffic</code></a>: _(Optional)_ Comma-separated list of tag traffic assignments.
228228

229229
with:
230230
tag_traffic: 'my-tag=10' # percentage
231231

232-
This is mutually-exclusive with `revision_traffic`. This option is only
232+
This is mutually-exclusive with `revision_traffic`. This option only
233233
applies to services.
234234

235235
- <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
236236
run services update-traffic` command. This can be used to apply advanced
237237
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.
239239

240240
with:
241241
traffic_flags: '--set-tags=...'

dist/main/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "deploy-cloudrun",
3-
"version": "2.7.2",
3+
"version": "2.7.3",
44
"description": "Github Action: Deploy to Google Cloud Run",
55
"main": "dist/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)