We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 185000d commit ab2f032Copy full SHA for ab2f032
actions/get-vault-secrets/action.yaml
@@ -31,6 +31,11 @@ inputs:
31
description: |
32
Whether to export secrets as environment variables, making them available to all subsequent steps. Defaults to `true`.
33
default: "true"
34
+
35
+ ignore_missing:
36
+ description: |
37
+ When set to true, prevents the action from failing when a secret does not exist.
38
+ default: "false"
39
40
outputs:
41
secrets:
@@ -119,3 +124,4 @@ runs:
119
124
secrets: |
120
125
${{ steps.translate-secrets.outputs.secrets }}
121
126
exportEnv: ${{ inputs.export_env }}
127
+ ignoreNotFound: ${{ inputs.ignore_missing }}
0 commit comments