Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(admin): Repository move #60

Merged
merged 7 commits into from
Oct 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/auto-approve.yml

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

2 changes: 1 addition & 1 deletion .github/workflows/github-merit-badger.yml

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

6 changes: 3 additions & 3 deletions .github/workflows/monthly-repo-metrics.yml

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

2 changes: 1 addition & 1 deletion .github/workflows/pull-request-lint.yml

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

9 changes: 5 additions & 4 deletions .github/workflows/update-contributors.yml

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

1 change: 1 addition & 0 deletions .gitignore

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

14 changes: 10 additions & 4 deletions .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import {
} from './projenrc/github-workflows';

// Constants
const GITHUB_USER = 'aws-samples';
const PROJECT_NAME = 'emerging-tech-cdk-constructs';
const GITHUB_USER = 'awslabs';
const PROJECT_NAME = 'generative-ai-cdk-constructs';
const CDK_VERSION: string = '2.102.0';

const project = new awscdk.AwsCdkConstructLibrary({
Expand Down Expand Up @@ -65,7 +65,13 @@ const project = new awscdk.AwsCdkConstructLibrary({
pullRequestLintOptions: {
contributorStatement: 'By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of the project license.',
contributorStatementOptions: {
exemptUsers: ['amazon-auto', 'dependabot[bot]', 'emerging-tech-cdk-constructs-bot', 'github-actions'],
exemptUsers: [
'amazon-auto',
'dependabot[bot]',
'emerging-tech-cdk-constructs-bot',
'generative-ai-cdk-constructs-bot',
'github-actions',
],
},
},
},
Expand All @@ -74,7 +80,7 @@ const project = new awscdk.AwsCdkConstructLibrary({
license: 'Apache-2.0',
copyrightPeriod: '2023-',
copyrightOwner: 'Amazon.com, Inc. or its affiliates. All Rights Reserved.',
gitignore: ['*.DS_STORE', '!.node-version', '*.pyc', '__pycache__/'],
gitignore: ['*.DS_STORE', '!.node-version', '*.pyc', '__pycache__/', '!.ort.yml'],
stability: 'experimental',
sampleCode: false,
stale: true,
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,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-samples/emerging-tech-cdk-constructs/issues), or [recently closed](https://github.com/aws-samples/emerging-tech-cdk-constructs/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:
When filing an issue, please check [existing open](https://github.com/awslabs/generative-ai-cdk-constructs/issues), or [recently closed](https://github.com/awslabs/generative-ai-cdk-constructs/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
* The version of our code being used
Expand Down Expand Up @@ -182,7 +182,7 @@ If you discover a potential security issue in this project we ask that you notif

## Licensing

See the [LICENSE](https://github.com/aws-samples/emerging-tech-cdk-constructs/blob/main/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
See the [LICENSE](https://github.com/awslabs/generative-ai-cdk-constructs/blob/main/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.

Expand Down
4 changes: 2 additions & 2 deletions DEVELOPER_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ npm install -g npm aws-cdk yarn projen

| Action | |
| :--------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Open up the [aws-emerging-tech-constructs repo](https://github.com/aws-samples/emerging-tech-cdk-constructs). | As you are reading this file from the aws-emerging-tech-constructs repo, you are probably already there. |
| Open up the [repository](https://github.com/awslabs/generative-ai-cdk-constructs). | As you are reading this file from the repo, you are probably already there. |
| Using the Fork button at the upper right, Fork the repo into your github account. | While we can give some advice on what github and git commands to use, we will not attempt to be a git tutorial. Some git/github expertise is assumed. |
| Clone forked repo to your local development environment | If you wish to work off a branch in your repository, create that branch now and clone that branch. You will create a PR back to Main in aws-emerging-tech-constructs eventually, you can do that from fork/main or fork/*branch* |
| Clone forked repo to your local development environment | If you wish to work off a branch in your repository, create that branch now and clone that branch. You will create a PR back to `main` in generative-ai-cdk-constructs repository eventually, you can do that from fork/main or fork/*branch* |
| `cd emerging-tech-cdk-construct` | This is the home directory of the repo, this is where you will open your text editor, run builds, etc. |
| `code .` | Opens the project in VSCode. You can use the editor of your choice, just adapt this step to your specific use case. |
| `npx projen install` | This command will generate project files (dependencies, ...) from the configuration file, and install them. |
Expand Down
Loading