Skip to content

Commit

Permalink
Document that secrets can be CSV (#307)
Browse files Browse the repository at this point in the history
Closes
#306
  • Loading branch information
sethvargo authored Oct 25, 2024
1 parent 0eee3cd commit 2715e4c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ jobs:
<!-- BEGIN_AUTOGEN_INPUTS -->
- <a name="secrets"></a><a href="#user-content-secrets"><code>secrets</code></a>: _(Required)_ The list of secrets to access and inject into the
environment. Due to limitations with GitHub Actions inputs, this is
specified as a string.
You can specify multiple secrets by putting each secret on its own line:
- <a name="secrets"></a><a href="#user-content-secrets"><code>secrets</code></a>: _(Required)_ List of secrets to access and inject into the environment. These are
comma-separated or newline-separated `OUTPUTNAME:SECRET`. Output names or
secret names that contain separators must be escaped with a backslash
(e.g. `\,` or `\\n`) unless quoted. Any leading or trailing whitespace is
trimmed unless values are quoted.

```yaml
secrets: |-
Expand Down
10 changes: 5 additions & 5 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ description: |-
inputs:
secrets:
description: |-
The list of secrets to access and inject into the
environment. Due to limitations with GitHub Actions inputs, this is
specified as a string.
You can specify multiple secrets by putting each secret on its own line:
List of secrets to access and inject into the environment. These are
comma-separated or newline-separated `OUTPUTNAME:SECRET`. Output names or
secret names that contain separators must be escaped with a backslash
(e.g. `\,` or `\\n`) unless quoted. Any leading or trailing whitespace is
trimmed unless values are quoted.
```yaml
secrets: |-
Expand Down

0 comments on commit 2715e4c

Please sign in to comment.