generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
25 lines (25 loc) · 853 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
name: "Neon Branching Action"
description: "Handle creating and deleting databes branches on Neon.tech"
inputs:
api_key: # id of input
description: "neon.tech api key - https://neon.tech/docs/manage/api-keys"
required: true
project_id: # id of input
description: "neon.tech project id"
required: true
branch_name: # id of input
description: "name for the new branch"
required: true
branch_operation: # id of input
description: "type of branching operation to perform: ['create_branch', 'delete_branch']"
required: true
outputs:
host_url: # id of output
description: "Host URL for the newly created branch"
host_id: # id of output
description: "Host ID for the newly created branch"
branch_id: # id of output
description: "Newly created branch ID"
runs:
using: "node16"
main: "dist/index.js"