Skip to content

Commit 625770f

Browse files
authored
Replace org name from awslabs to aws (#755)
1 parent cf96f04 commit 625770f

File tree

9 files changed

+201
-201
lines changed

9 files changed

+201
-201
lines changed

.changeset/changelog.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const REPO = "awslabs/aws-sdk-js-codemod";
1+
const REPO = "aws/aws-sdk-js-codemod";
22

33
const getGithubCommitWithLink = (commit) =>
44
`[${commit}](https://github.com/${REPO}/commit/${commit})`;

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @awslabs/aws-sdk-js-team
1+
* @aws/aws-sdk-js-team

.github/workflows/lock.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: dessant/lock-threads@v5
16-
if: github.repository == 'awslabs/aws-sdk-js-codemod'
16+
if: github.repository == 'aws/aws-sdk-js-codemod'
1717
with:
1818
github-token: ${{ github.token }}
1919
issue-inactive-days: 14
2020
pr-inactive-days: 14
2121
issue-comment: >
2222
This thread has been automatically locked since there has not been
2323
any recent activity after it was closed. Please open a
24-
[new issue](https://github.com/awslabs/aws-sdk-js-codemod/issues/new/choose)
24+
[new issue](https://github.com/aws/aws-sdk-js-codemod/issues/new/choose)
2525
for related bugs and link to relevant comments in this thread.
2626
pr-comment: >
2727
This thread has been automatically locked since there has not been
2828
any recent activity after it was closed. Please open a
29-
[new issue](https://github.com/awslabs/aws-sdk-js-codemod/issues/new/choose)
29+
[new issue](https://github.com/aws/aws-sdk-js-codemod/issues/new/choose)
3030
for related bugs and link to relevant comments in this thread.

CHANGELOG.md

Lines changed: 188 additions & 188 deletions
Large diffs are not rendered by default.

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ information to effectively respond to your bug report or contribution.
1010

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

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

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

4242
## Finding contributions to work on
4343

44-
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/awslabs/aws-sdk-js-codemod/labels/help%20wanted) issues is a great place to start.
44+
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/aws-sdk-js-codemod/labels/help%20wanted) issues is a great place to start.
4545

4646
## Code of Conduct
4747

@@ -55,6 +55,6 @@ If you discover a potential security issue in this project we ask that you notif
5555

5656
## Licensing
5757

58-
See the [LICENSE](https://github.com/awslabs/aws-sdk-js-codemod/blob/main/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
58+
See the [LICENSE](https://github.com/aws/aws-sdk-js-codemod/blob/main/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
5959

6060
We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"v3",
1313
"migration"
1414
],
15-
"homepage": "https://github.com/awslabs/aws-sdk-js-codemod",
15+
"homepage": "https://github.com/aws/aws-sdk-js-codemod",
1616
"license": "MIT-0",
1717
"author": {
1818
"name": "Amazon Web Services",
@@ -30,7 +30,7 @@
3030
"bin": "bin/aws-sdk-js-codemod",
3131
"repository": {
3232
"type": "git",
33-
"url": "https://github.com/awslabs/aws-sdk-js-codemod.git"
33+
"url": "https://github.com/aws/aws-sdk-js-codemod.git"
3434
},
3535
"scripts": {
3636
"build": "tsc",

src/transforms/v2-to-v3/apis/removePromiseForCallExpression.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const removePromiseForCallExpression = (
1919
emitWarning(
2020
`Removal of .promise() not implemented for parentPath: ${callExpression.parentPath.value.type}\n` +
2121
`Code processed: ${j(callExpression.parentPath).toSource()}\n\n` +
22-
"Please report your use case on https://github.com/awslabs/aws-sdk-js-codemod\n"
22+
"Please report your use case on https://github.com/aws/aws-sdk-js-codemod\n"
2323
);
2424
const comments = callExpression.parentPath.node.comments || [];
2525
comments.push(

src/transforms/v2-to-v3/client-names/getClientNamesRecord.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export const getClientNamesRecord = (
1818
: getClientNamesRecordFromImport(j, source, clientNamesFromDeepImport);
1919

2020
// Populate client names for type transformations
21-
// Ref: https://github.com/awslabs/aws-sdk-js-codemod/issues/663
21+
// Ref: https://github.com/aws/aws-sdk-js-codemod/issues/663
2222
for (const clientName of clientNamesFromDeepImport) {
2323
if (!(clientName in clientNamesRecord)) {
2424
clientNamesRecord[clientName] = clientName;

src/transforms/v2-to-v3/modules/importEqualsModule/addNamedModule.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,6 @@ export const addNamedModule = (
6262
// Unreachable code, throw error
6363
throw new Error(
6464
"The named import equals can't exist on it's own.\n" +
65-
"Please report your use case on https://github.com/awslabs/aws-sdk-js-codemod"
65+
"Please report your use case on https://github.com/aws/aws-sdk-js-codemod"
6666
);
6767
};

0 commit comments

Comments
 (0)