You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: action.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ inputs:
29
29
description: "The name of the AWS CodeDeploy deployment group, if the ECS service uses the CODE_DEPLOY deployment controller. Will default to 'DgpECS-{cluster}-{service}'."
30
30
required: false
31
31
codedeploy-deployment-description:
32
-
description: "A description of the deployment, if the ECS service uses the CODE_DEPLOY deployment controller."
32
+
description: "A description of the deployment, if the ECS service uses the CODE_DEPLOY deployment controller. NOTE: This will be truncated to 512 characters if necessary."
33
33
required: false
34
34
force-new-deployment:
35
35
description: 'Whether to force a new deployment of the service. Valid value is "true". Will default to not force a new deployment.'
Copy file name to clipboardExpand all lines: index.test.js
+85-1Lines changed: 85 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -941,6 +941,90 @@ describe('Deploy to ECS', () => {
941
941
expect(core.info).toBeCalledWith("Deployment started. Watch this deployment's progress in the AWS CodeDeploy console: https://console.aws.amazon.com/codesuite/codedeploy/deployments/deployment-1?region=fake-region");
942
942
});
943
943
944
+
test('registers the task definition contents and creates a CodeDeploy deployment with custom application, deployment group and long description',async()=>{
expect(core.info).toBeCalledWith("Deployment started. Watch this deployment's progress in the AWS CodeDeploy console: https://console.aws.amazon.com/codesuite/codedeploy/deployments/deployment-1?region=fake-region");
1026
+
});
1027
+
944
1028
test('registers the task definition contents at an absolute path',async()=>{
0 commit comments