Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typos in action.yml #543

Merged
merged 2 commits into from
Sep 10, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
docs: fix typo in action.yml
incorrectly referencing `env_vars_files` instead of `env_vars_file`

Signed-off-by: Ahmad Nassri <[email protected]>
  • Loading branch information
ahmadnassri committed Sep 10, 2024
commit cf692e267067134b67976f8653d56cb40ff491d5
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
[email protected]\,[email protected]
Expand All @@ -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.
Expand Down
Loading