Skip to content

Commit aeebecd

Browse files
committed
updated running task link to ECS and read me file
1 parent 2e296b3 commit aeebecd

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ Registers an Amazon ECS task definition and deploys it to an ECS service.
3131
```
3232
3333
See [action.yml](action.yml) for the full documentation for this action's inputs and outputs.
34+
In most cases when running a one-off task, subnet ID's, subnet groups, and assign public IP will be required.
3435
3536
### Task definition file
3637

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ async function runTask(ecs,clusterName, taskDefArn, waitForMinutes) {
7676
const consoleHostname = region.startsWith('cn') ? 'console.amazonaws.cn' : 'console.aws.amazon.com';
7777

7878

79-
core.info(`Task running: https://${consoleHostname}/ecs/home?region=${region}#/clusters/${clusterName}/tasks/${startedBy}`);
79+
core.info(`Task running: https://${consoleHostname}/ecs/home?region=${region}#/clusters/${clusterName}/tasks`);
8080

8181

8282
if (runTaskResponse.failures && runTaskResponse.failures.length > 0) {

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ async function runTask(ecs,clusterName, taskDefArn, waitForMinutes) {
7070
const consoleHostname = region.startsWith('cn') ? 'console.amazonaws.cn' : 'console.aws.amazon.com';
7171

7272

73-
core.info(`Task running: https://${consoleHostname}/ecs/home?region=${region}#/clusters/${clusterName}/tasks/${startedBy}`);
73+
core.info(`Task running: https://${consoleHostname}/ecs/home?region=${region}#/clusters/${clusterName}/tasks`);
7474

7575

7676
if (runTaskResponse.failures && runTaskResponse.failures.length > 0) {

0 commit comments

Comments
 (0)