generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
56 lines (52 loc) · 1.51 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: 'DMNO Secrets and Config'
description: 'Unified environment variables for GitHub Actions powered by DMNO'
author: 'dmno-dev'
# Add your action's branding here. This will appear on the GitHub Marketplace.
branding:
icon: 'lock'
color: 'purple'
# Define your inputs here.
inputs:
service-name:
description:
'Explicitly select the service to populate config for (useful in a
monorepo)'
required: false
base-directory:
description:
'The base directory to generate config for, if not provided, the current
working directory will be used'
required: false
default: '.'
phase:
description: 'The phase of the service to generate config for'
required: false
default: ''
emit-env-vars:
description: 'Whether to emit environment variables, defaults to true'
required: false
default: true
output-vars:
description:
'Whether to also provide the variables in the output, defaults to false'
required: false
default: false
skip-regex:
description: 'The regex to skip config for, defaults to empty string'
required: false
default: ''
skip-cache:
description: 'Whether to skip the cache, defaults to false'
required: false
default: false
clear-cache:
description: 'Whether to clear the cache, defaults to false'
required: false
default: false
# Define your outputs here.
outputs:
DMNO_CONFIG:
description: 'JSON string of key/value pairs of the generated variables'
runs:
using: node20
main: dist/index.js