Skip to content

Commit

Permalink
Rename game to 2019
Browse files Browse the repository at this point in the history
  • Loading branch information
clareliguori committed Nov 18, 2019
1 parent 5bc46eb commit 4592d07
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
16 changes: 8 additions & 8 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# Contributing Guidelines

Thank you for your interest in contributing to our project. Whether it's a bug report, new feature, correction, or additional
Thank you for your interest in contributing to our project. Whether it's a bug report, new feature, correction, or additional
documentation, we greatly value feedback and contributions from our community.

Please read through this document before submitting any issues or pull requests to ensure we have all the necessary
Please read through this document before submitting any issues or pull requests to ensure we have all the necessary
information to effectively respond to your bug report or contribution.


## Reporting Bugs/Feature Requests

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-samples/aws-reinvent-2018-trivia-game/issues), or [recently closed](https://github.com/aws-samples/aws-reinvent-2018-trivia-game/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-samples/aws-reinvent-2019-trivia-game/issues), or [recently closed](https://github.com/aws-samples/aws-reinvent-2019-trivia-game/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 All @@ -36,17 +36,17 @@ To send us a pull request, please:
5. Send us a pull request, answering any default questions in the pull request interface.
6. Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation.

GitHub provides additional document on [forking a repository](https://help.github.com/articles/fork-a-repo/) and
GitHub provides additional document on [forking a repository](https://help.github.com/articles/fork-a-repo/) and
[creating a pull request](https://help.github.com/articles/creating-a-pull-request/).


## 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-samples/aws-reinvent-2018-trivia-game/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-samples/aws-reinvent-2019-trivia-game/labels/help%20wanted) issues is a great place to start.


## Code of Conduct
This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
[email protected] with any additional questions or comments.


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-samples/aws-reinvent-2018-trivia-game/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-samples/aws-reinvent-2019-trivia-game/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.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## AWS re:Invent 2018 Trivia Game
## AWS re:Invent 2019 Trivia Game

Sample trivia game built with AWS Fargate, AWS Lambda, and Amazon Lex. See [reinvent-trivia.com](https://www.reinvent-trivia.com) for a running example.

Expand Down
2 changes: 1 addition & 1 deletion pipelines/src/api-base-image-pipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class TriviaGameBackendBaseImagePipeline extends cdk.Stack {
const sourceAction = new actions.GitHubSourceAction({
actionName: 'GitHubSource',
owner: 'aws-samples',
repo: 'aws-reinvent-2018-trivia-game',
repo: 'aws-reinvent-2019-trivia-game',
oauthToken: githubAccessToken,
output: sourceOutput
});
Expand Down
2 changes: 1 addition & 1 deletion pipelines/src/api-service-codedeploy-pipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class TriviaGameBackendCodeDeployPipelineStack extends cdk.Stack {
const sourceAction = new actions.GitHubSourceAction({
actionName: 'GitHubSource',
owner: 'aws-samples',
repo: 'aws-reinvent-2018-trivia-game',
repo: 'aws-reinvent-2019-trivia-game',
oauthToken: githubAccessToken,
output: sourceOutput
});
Expand Down
2 changes: 1 addition & 1 deletion pipelines/src/api-service-pipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class TriviaGameBackendPipelineStack extends cdk.Stack {
const sourceAction = new actions.GitHubSourceAction({
actionName: 'GitHubSource',
owner: 'aws-samples',
repo: 'aws-reinvent-2018-trivia-game',
repo: 'aws-reinvent-2019-trivia-game',
oauthToken: githubAccessToken,
output: sourceOutput
});
Expand Down
2 changes: 1 addition & 1 deletion pipelines/src/pipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export class TriviaGameCfnPipeline extends cdk.Construct {
const sourceAction = new actions.GitHubSourceAction({
actionName: 'GitHubSource',
owner: 'aws-samples',
repo: 'aws-reinvent-2018-trivia-game',
repo: 'aws-reinvent-2019-trivia-game',
oauthToken: githubAccessToken,
output: sourceOutput
});
Expand Down
2 changes: 1 addition & 1 deletion pipelines/src/static-site-pipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class TriviaGameStaticSitePipeline extends cdk.Stack {
const sourceAction = new actions.GitHubSourceAction({
actionName: 'GitHubSource',
owner: 'aws-samples',
repo: 'aws-reinvent-2018-trivia-game',
repo: 'aws-reinvent-2019-trivia-game',
oauthToken: githubAccessToken,
output: sourceOutput
});
Expand Down
2 changes: 1 addition & 1 deletion static-site/app/js/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Footer extends React.Component {
return (
<div className='footer'>
<span className='footer' style={style}>
© 2018, Amazon Web Services, Inc. or its affiliates. See the source code for this site on <a href="https://github.com/aws-samples/aws-reinvent-2018-trivia-game/">GitHub</a>.
© 2019, Amazon Web Services, Inc. or its affiliates. See the source code for this site on <a href="https://github.com/aws-samples/aws-reinvent-2019-trivia-game/">GitHub</a>.
</span>
</div>
);
Expand Down

0 comments on commit 4592d07

Please sign in to comment.