Skip to content

Commit 6f68181

Browse files
authored
Merge pull request #16 from geekcell/update-readme
Update README.md
2 parents 8afb3a4 + 585255c commit 6f68181

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
<!-- action-docs-description -->
44
## Description
55

6-
Run an AWS ECS Fargate task and execute a custom commands. See the log output of the commands.
6+
Run an AWS ECS Fargate task and execute a custom command. See the log output of the command that is executed.
77
<!-- action-docs-description -->
88

99
### Details
10-
This action makes it possible to run an AWS ECS Fargate task and execute a custom command. If the task definition
11-
defines logs to CloudWatch this action will also tail the output of container, providing instant feedback inside
10+
This action makes it possible to run an AWS ECS Fargate task and execute custom commands. If the task definition
11+
is configured to log to CloudWatch, this action will try to tail the output of container, providing instant feedback inside
1212
the GitHub Workflow.
1313

1414
This action is great for executing migrations or other pre/post deployment steps for ECS Fargate applications.
@@ -19,7 +19,7 @@ This action is great for executing migrations or other pre/post deployment steps
1919
``` yaml
2020
- name: Execute migrations and seeders
2121
id: run-task
22-
uses: geekcell/github-action-aws-ecs-run-task@v1.0.0
22+
uses: geekcell/github-action-aws-ecs-run-task@v3.0.0
2323
with:
2424
cluster: application-cluster
2525
task-definition: application-task-def
@@ -48,7 +48,7 @@ This action is great for executing migrations or other pre/post deployment steps
4848
``` yaml
4949
- name: Run migration container
5050
id: run-task
51-
uses: geekcell/github-action-aws-ecs-run-task@v1.0.0
51+
uses: geekcell/github-action-aws-ecs-run-task@v3.0.0
5252
with:
5353
cluster: application-cluster
5454
task-definition: application-task-def
@@ -62,7 +62,7 @@ You can use the backslash character `\` to append multiple lines into a single l
6262
commands to execute and want to keep the YAML file readable. Otherwise, each line will be passed to the AWS ECS Fargate
6363
task as a separate argument.
6464

65-
> **Note:** Make sure to use the `|` character to make sure the YAML parser interprets the value as a multiline string.
65+
> **Note:** Make sure to use the `|` character so the YAML parser interprets the value as a multiline string.
6666
> You can read more about this in the [YAML documentation](https://yaml.org/spec/1.2/spec.html#id2794534).
6767

6868
For example:
@@ -111,5 +111,5 @@ Will pass the following command to the container on the AWS ECS Fargate task:
111111
<!-- action-docs-runs -->
112112
## Runs
113113

114-
This action is a `node16` action.
114+
This action is a `node20` action.
115115
<!-- action-docs-runs -->

0 commit comments

Comments
 (0)