generated from agendrix/github-typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
25 lines (25 loc) · 894 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: Wait for ECS service deployment
description: Wait for an ECS service deployment to complete
author: Agendrix
inputs:
cluster:
description: Name of the ECS cluster in which the service operates
required: true
service:
description: Name of the ECS service
required: true
task-definition-arn:
description: ARN of the task definition attached to the deployment to monitor
required: true
deployment-timeout-minutes:
description: How long to wait for the ECS service deployment to complete before failing
default: 10
outputs:
deployment-outcome:
description: |
The outcome of the service deployment. Possible values are:
'success' if the deployment completed successfully and that the service is stable
'skipped' if a new primary deployment was enqueue while the deployment was ongoing
runs:
using: node20
main: dist/index.js