generated from agendrix/github-typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f5ec1a1
commit bba8c3d
Showing
6 changed files
with
37 additions
and
174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,34 @@ | ||
name: 'Your name here' | ||
description: 'Provide a description here' | ||
author: 'Your name or organization here' | ||
name: Build Task Definition from ECS Service | ||
description: Build a task-definition from merging a given container-definitions JSON file into the task-definition of a running service on ECS. | ||
inputs: | ||
milliseconds: # change this | ||
cluster: | ||
description: Name of the cluster | ||
required: true | ||
description: 'input description here' | ||
default: 'default value if applicable' | ||
service: | ||
description: Name of the service | ||
required: true | ||
container_definitions_path: | ||
description: Path to your container definitions JSON file | ||
required: true | ||
secrets_path: | ||
description: | | ||
Path to a JSON file containing the list of secrets to append. | ||
Use this if your secrets are in a separate file than your container-definitions. | ||
This will replace all secrets fields from you container-definitions file. | ||
required: false | ||
image: | ||
description: | | ||
URI of the image to use. | ||
Use this if you need to dynamically change the name of an image in your container-definitions file. | ||
This will replace <IMAGE> strings from you container-definitions file. | ||
required: false | ||
outputs: | ||
path: | ||
description: Path to the generated task-definition file" | ||
should_deploy: | ||
description: True if the current task definition is different than the one currently used by the given ECS service | ||
current_task_definition_path: | ||
description: Path to a copy of the current stable task-definition running on the cluster | ||
runs: | ||
using: 'node12' | ||
main: 'dist/index.js' | ||
using: node12 | ||
main: dist/index.js |
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.