Skip to content

Commit

Permalink
Update URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
clareliguori committed Nov 8, 2019
1 parent 76987f6 commit ded1b0e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ information to effectively respond to your bug report or contribution.

We welcome you to use the GitHub issue tracker to report bugs or suggest features.

When filing an issue, please check [existing open](https://github.com/aws/amazon-ecs-render-task-definition-for-github-actions/issues), or [recently closed](https://github.com/aws/amazon-ecs-render-task-definition-for-github-actions/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
When filing an issue, please check [existing open](https://github.com/aws-actions/amazon-ecs-render-task-definition/issues), or [recently closed](https://github.com/aws-actions/amazon-ecs-render-task-definition/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:

* A reproducible test case or series of steps
Expand Down Expand Up @@ -41,7 +41,7 @@ GitHub provides additional document on [forking a repository](https://help.githu


## Finding contributions to work on
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/aws/amazon-ecs-render-task-definition-for-github-actions/labels/help%20wanted) issues is a great place to start.
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/aws-actions/amazon-ecs-render-task-definition/labels/help%20wanted) issues is a great place to start.


## Code of Conduct
Expand All @@ -56,6 +56,6 @@ If you discover a potential security issue in this project we ask that you notif

## Licensing

See the [LICENSE](https://github.com/aws/amazon-ecs-render-task-definition-for-github-actions/blob/master/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
See the [LICENSE](https://github.com/aws-actions/amazon-ecs-render-task-definition/blob/master/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.

We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Amazon ECS "Render Task Definition" Action for GitHub Actions

Inserts a container image URI into an Amazon ECS task definition file, creating a new task definition file.
Inserts a container image URI into an Amazon ECS task definition JSON file, creating a new task definition file.

## Usage

Expand All @@ -9,14 +9,14 @@ To insert the image URI `amazon/amazon-ecs-sample:latest` as the image for the `
```yaml
- name: Render Amazon ECS task definition
id: render-web-container
uses: aws/amazon-ecs-render-task-definition-for-github-actions@master
uses: aws-actions/amazon-ecs-render-task-definition@v1
with:
task-definition: task-definition.json
container-name: web
image: amazon/amazon-ecs-sample:latest

- name: Deploy to Amazon ECS service
uses: aws/amazon-ecs-deploy-task-definition-for-github-actions@master
uses: aws-actions/amazon-ecs-deploy-task-definition@v1
with:
task-definition: ${{ steps.render-web-container.outputs.task-definition }}
service: my-service
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "amazon-ecs-render-task-definition-for-github-actions",
"name": "aws-actions-amazon-ecs-render-task-definition",
"version": "0.0.0",
"description": "Render Amazon ECS task definition file",
"main": "index.js",
Expand All @@ -10,7 +10,7 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/aws/amazon-ecs-render-task-definition-for-github-actions.git"
"url": "git+https://github.com/aws-actions/amazon-ecs-render-task-definition.git"
},
"keywords": [
"AWS",
Expand All @@ -21,9 +21,9 @@
"author": "AWS",
"license": "MIT",
"bugs": {
"url": "https://github.com/aws/amazon-ecs-render-task-definition-for-github-actions/issues"
"url": "https://github.com/aws-actions/amazon-ecs-render-task-definition/issues"
},
"homepage": "https://github.com/aws/amazon-ecs-render-task-definition-for-github-actions#readme",
"homepage": "https://github.com/aws-actions/amazon-ecs-render-task-definition#readme",
"dependencies": {
"@actions/core": "^1.2.0",
"tmp": "^0.1.0"
Expand Down

0 comments on commit ded1b0e

Please sign in to comment.