generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
36 lines (31 loc) · 1.09 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# yaml-language-server: $schema=https://json.schemastore.org/github-action.json
# docs: https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions
name: Fetch the secret from doppler.com
description: This action allows receiving the secret from doppler.com
inputs:
token:
description: Doppler service token # docs: <https://docs.doppler.com/docs/enclave-service-tokens>
required: true
project:
description: Doppler project name # docs: <https://docs.doppler.com/docs/enclave-project-setup>
required: true
config:
description: Doppler config (also known as "environment") # docs: <https://docs.doppler.com/docs/enclave-root-configs>
required: false
default: prd
secret-name:
description: Secret name
required: true
save-to-file:
description: Path to the file for storing the secret (in this case action output named "secret" will be empty)
required: false
outputs:
secret:
description: Secret value
runs:
using: node20
main: dist/action/index.js
post: dist/cleanup/index.js
branding:
icon: activity
color: yellow