From 1671c7f643e8776baa2591916948a5d304d88dfd Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Tue, 10 Sep 2024 11:16:35 -0400 Subject: [PATCH] fix typos in action.yml (#543) Closes https://github.com/google-github-actions/deploy-cloudrun/pull/542 Rebases #542 with the generated docs, and opening as myself so that integration tests pass. --------- Signed-off-by: Ahmad Nassri Co-authored-by: Ahmad Nassri --- README.md | 6 +++--- action.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 0efeb87..bf724a0 100644 --- a/README.md +++ b/README.md @@ -100,13 +100,13 @@ jobs: merged). To remove all values, set the value to the literal string `{}`. If both `env_vars` and `env_vars_file` are specified, the keys in - `env_vars` will take precendence over the keys in `env_vars_files`. + `env_vars` will take precendence over the keys in `env_vars_file`. - env_vars_file: _(Optional)_ Path to a file on disk, relative to the workspace, that defines environment variables. The file can be newline-separated KEY=VALUE pairs, JSON, or YAML format. If both `env_vars` and `env_vars_file` are specified, the keys in env_vars will take precendence over the keys in - env_vars_files. + env_vars_file. NAME=person EMAILS=foo@bar.com\,zip@zap.com @@ -115,7 +115,7 @@ jobs: described in `env_vars`. You do not have to escape YAML or JSON. If both `env_vars` and `env_vars_file` are specified, the keys in - `env_vars` will take precendence over the keys in `env_vars_files`. + `env_vars` will take precendence over the keys in `env_vars_file`. **⚠️ DEPRECATION NOTICE:** This input is deprecated and will be removed in the next major version release. diff --git a/action.yml b/action.yml index f5270e8..42414db 100644 --- a/action.yml +++ b/action.yml @@ -83,7 +83,7 @@ inputs: merged). To remove all values, set the value to the literal string `{}`. If both `env_vars` and `env_vars_file` are specified, the keys in - `env_vars` will take precendence over the keys in `env_vars_files`. + `env_vars` will take precendence over the keys in `env_vars_file`. required: false env_vars_file: @@ -92,7 +92,7 @@ inputs: environment variables. The file can be newline-separated KEY=VALUE pairs, JSON, or YAML format. If both `env_vars` and `env_vars_file` are specified, the keys in env_vars will take precendence over the keys in - env_vars_files. + env_vars_file. NAME=person EMAILS=foo@bar.com\,zip@zap.com @@ -101,7 +101,7 @@ inputs: described in `env_vars`. You do not have to escape YAML or JSON. If both `env_vars` and `env_vars_file` are specified, the keys in - `env_vars` will take precendence over the keys in `env_vars_files`. + `env_vars` will take precendence over the keys in `env_vars_file`. **⚠️ DEPRECATION NOTICE:** This input is deprecated and will be removed in the next major version release.