generated from actions/javascript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaction.yml
37 lines (35 loc) · 1.16 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
name: "Remote dotenv to Environment (configserver alike)"
description: "Export remote dotenv configuration to GITHUB_ENV. With multiple options (alike a Spring Cloud Config server)"
branding:
icon: "arrow-down"
color: "blue"
inputs:
repository:
description: "The repository ref <owner>/<repo>"
required: true
token:
description: "Access token (you might provide GITHUB_TOKEN)"
required: false
default: ${{ github.token }}
branch:
description: "Remote branch containing configuration (default 'main')"
required: false
destination:
description: "Working folder to write configuration to (default 'RUNNER_TEMP')"
required: false
directory:
description: "Subdirectory containing target dotenv file (default '.')"
required: false
filename:
description: "Subdirectory containing target dotenv file (default '.env')"
required: false
profile:
description: "If given, will split inject profile in filename (ex: <profile>.env)"
required: false
cleanup:
description: "Delete configuration after loading (default 'true')"
default: "true"
required: false
runs:
using: "node16"
main: "dist/index.js"