-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
27 lines (27 loc) · 1002 Bytes
/
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
name: 'Based.io Deploy'
description: 'Easily deploy your branch on Based.io'
inputs:
userID:
description: 'The user ID created on the Based.io dashboard.'
required: true
apiKey:
description: 'The secret token for authentication with the Based.io API.'
required: true
size:
description: "The size of the environment, can be 'small' or 'large'. The default is 'small'."
required: false
region:
description: "In which region would you like to spawn the environment? You can choose between 'eu-central-1', 'sa-east-1', 'us-east-1', 'us-west-1', 'ap-southeast-2'. The default is 'eu-central-1'."
required: false
action:
description: "The operation that this action must to perform, you can choose between 'create-env' or 'destroy-env'. The default is 'create-env'."
required: false
outputs:
response:
description: 'The response from the Based.io API'
runs:
using: 'node16'
main: 'dist/index.cjs'
branding:
icon: 'upload-cloud'
color: 'purple'