Skip to content
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/actions/changelog-verification/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ runs:
uses: actions/checkout@v4

- name: Setup kat
uses: awslabs/aws-kotlin-repo-tools/.github/actions/setup-kat@main
uses: aws/aws-kotlin-repo-tools/.github/actions/setup-kat@main

- name: Check for new changelog entry
if: ${{ !contains(github.event.pull_request.labels.*.name, 'no-changelog') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/merge-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Merge main
uses: awslabs/aws-kotlin-repo-tools/.github/actions/merge-main@main
uses: aws/aws-kotlin-repo-tools/.github/actions/merge-main@main
with:
ci-user-pat: ${{ secrets.CI_USER_PAT }}
exempt-branches: # Add any if required
2 changes: 1 addition & 1 deletion CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @awslabs/aws-sdk-kotlin-sde
* @aws/aws-sdk-kotlin-team
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ fun Project.skipPublishing() {
}

// TODO Remove this once aws-sdk-kotlin migrates to Central Portal
fun Project.configureNexusPublishing(repoName: String, githubOrganization: String = "awslabs") {
fun Project.configureNexusPublishing(repoName: String, githubOrganization: String = "aws") {
val project = this
apply(plugin = "maven-publish")

Expand Down Expand Up @@ -188,7 +188,7 @@ fun Project.configureNexusPublishing(repoName: String, githubOrganization: Strin
* @param repoName the repository name (e.g. `smithy-kotlin`, `aws-sdk-kotlin`, etc)
* @param githubOrganization the name of the GitHub organization that [repoName] is located in
*/
fun Project.configurePublishing(repoName: String, githubOrganization: String = "awslabs") {
fun Project.configurePublishing(repoName: String, githubOrganization: String = "aws") {
val project = this
apply(plugin = "maven-publish")

Expand Down
Loading