forked from researchsquare/run-ecs-task-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
35 lines (35 loc) · 1.18 KB
/
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
35
name: 'Run ECS Task Action for GitHub Actions'
description: 'Runs a one off task on an ECS cluster'
branding:
icon: 'cloud'
color: 'orange'
inputs:
task-definition-arn:
description: 'ECS task definition arn'
required: false
cluster:
description: "The name of the ECS service's cluster. Will default to the 'default' cluster"
required: false
count:
description: "The number of tasks to start. Will default to 1"
required: false
wait-for-task-completion:
description: 'Whether to wait for the ECS task to finish processing. Valid value is "true". Will default to not waiting.'
required: false
wait-for-minutes:
description: 'How long to wait for the ECS task to finish processing, in minutes (default: 30 minutes, max: 6 hours).'
required: false
overrides:
description: 'Json object of task level overrides to use'
required: false
network-configuration:
description: 'Json object of networkConfiguration to use'
required: false
outputs:
task-definition-arn:
description: 'The ARN of the registered ECS task definition'
task-arn:
description: 'List of ARNs of the ECS task(s) run'
runs:
using: 'node16'
main: 'dist/index.js'