-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathaction.yml
31 lines (31 loc) · 848 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
name: 'ECS Wait'
author: 'Oryan Moshe'
description: 'Waits for ECS service stability'
inputs:
ecs-cluster:
description: 'The ECS cluster name (string)'
required: true
ecs-services:
description: 'List of ECS services to wait for (string[])'
required: true
retries:
description: 'How many times to retry the 10 minute wait (integer)'
default: 2
aws-access-key-id:
description: 'The AWS_ACCESS_KEY_ID (string)'
aws-secret-access-key:
description: 'The AWS_SECRET_ACCESS_KEY (string)'
aws-region:
description: 'The AWS_REGION (string)'
verbose:
description: 'Whether to print the retry log (bool)'
default: false
outputs:
retries:
description: 'How many retries happened until success (integer)'
runs:
using: 'node12'
main: 'dist/index.js'
branding:
icon: 'clock'
color: 'purple'