Skip to content

Commit 48e34f6

Browse files
authored
Merge pull request #30 from geekcell/sdkv3-rep
Remove AWS SDKv2
2 parents 0e10ba3 + ada1fc2 commit 48e34f6

File tree

6 files changed

+45263
-63382
lines changed

6 files changed

+45263
-63382
lines changed

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
[![Geek Cell GmbH](https://raw.githubusercontent.com/geekcell/.github/main/geekcell-github-banner.png)](https://www.geekcell.io/)
22

3+
[![Linter](https://github.com/geekcell/github-action-aws-ecs-run-task/actions/workflows/linter.yaml/badge.svg)](https://github.com/geekcell/github-action-aws-ecs-run-task/actions/workflows/linter.yaml)
4+
[![Test](https://github.com/geekcell/github-action-aws-ecs-run-task/actions/workflows/test.yaml/badge.svg)](https://github.com/geekcell/github-action-aws-ecs-run-task/actions/workflows/test.yaml)
5+
[![Check dist/](https://github.com/geekcell/github-action-aws-ecs-run-task/actions/workflows/check-dist.yaml/badge.svg)](https://github.com/geekcell/github-action-aws-ecs-run-task/actions/workflows/check-dist.yaml)
6+
37
<!-- action-docs-description -->
48
## Description
59

@@ -103,7 +107,7 @@ Will pass the following command to the container on the AWS ECS Fargate task:
103107
| tail-logs | If set to true, will try to extract the logConfiguration for the first container in the task definition. If `override-container` is passed, it will extract the logConfiguration from that container. Tailing logs is only possible if the provided container uses the `awslogs` logDriver. | `false` | true |
104108
| task-wait-until-stopped | Whether to wait for the task to stop before finishing the action. If set to false, the action will finish immediately after the task reaches the `RUNNING` state (fire and forget). | `false` | true |
105109
| task-start-max-wait-time | How long to wait for the task to start (i.e. reach the `RUNNING` state) in seconds. If the task does not start within this time, the pipeline will fail. | `false` | 120 |
106-
| task-stopped-max-wait-time | How long to wait for the task to stop (i.e. reach the `STOPPED` state) in seconds. The task will not be canceled after this time, the pipeline will just be marked as failed. | `false` | 300 |
110+
| task-stop-max-wait-time | How long to wait for the task to stop (i.e. reach the `STOPPED` state) in seconds. The task will not be canceled after this time, the pipeline will just be marked as failed. | `false` | 300 |
107111
| task-check-state-delay | How long to wait between each AWS API call to check the current state of the task in seconds. This is useful to avoid running into AWS rate limits. **However**, setting this too high might cause the Action to miss the time-window your task is in the "RUNNING" state (if you task is very short lived) and can cause the action to fail. | `false` | 6 |
108112
<!-- action-docs-inputs -->
109113

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ inputs:
7474
required: false
7575
default: 120
7676

77-
task-stopped-max-wait-time:
77+
task-stop-max-wait-time:
7878
description: >-
7979
How long to wait for the task to stop (i.e. reach the `STOPPED` state) in seconds. The task will not be canceled
8080
after this time, the pipeline will just be marked as failed.

0 commit comments

Comments
 (0)