-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
52 lines (52 loc) · 1.32 KB
/
action.yml
File metadata and controls
52 lines (52 loc) · 1.32 KB
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
name: 'Quant Cloud Environment Sync'
description: 'Syncs data between environments in Quant Cloud'
branding:
icon: 'cloud'
color: 'blue'
inputs:
api_key:
description: 'Quant API key'
required: true
organization:
description: 'Quant organisation ID'
required: true
app_name:
description: 'Name of your application'
required: true
environment_name:
description: 'Name for the environment'
required: true
base_url:
description: 'Quant Cloud API URL'
required: false
default: 'https://dashboard.quantcdn.io'
source:
description: 'Name of the source environment'
required: true
wait:
description: 'Whether to wait for the sync to complete'
required: false
default: 'false'
wait_interval:
description: 'Interval in seconds to wait for the sync to complete'
required: false
default: '10'
max_retries:
description: 'Maximum number of retries before timing out'
required: false
default: '30'
type:
description: 'Type of data to sync'
required: false
default: 'database'
outputs:
sync_id:
description: 'ID of the sync'
success:
description: 'Whether the sync was successful'
value: true
skipped:
description: 'Whether the sync was skipped (e.g. database not configured)'
runs:
using: 'node24'
main: 'dist/index.js'