-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
34 lines (33 loc) · 1011 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
28
29
30
31
32
33
34
name: 'Wait For TiDBCloud Branch'
description: 'Wait for TiDBCloud branch to be ready. Only used on pull request'
author: 'TiDBCloud ecosystem team'
branding:
icon: 'check-circle'
color: 'green'
inputs:
token:
description: 'The GitHub token to use for making API requests.'
required: true
ref:
description: 'The git ref of the commit you want to check.'
timeout-seconds:
description: 'The number of seconds to wait for the branch ready.'
default: '300'
interval-seconds:
description: 'The number of seconds to wait before each check.'
default: '10'
public-key:
description: 'The public key of TiDB Cloud API.'
required: true
private-key:
description: 'The private key of TiDB Cloud API.'
required: true
add-mask:
description: 'Whether to add mask for the output.'
default: 'true'
env:
description: 'The TiDB Cloud environment. Available values: dev, staging, prod.'
default: 'prod'
runs:
using: 'node16'
main: 'dist/index.js'