Unverified Commit 6438a09b authored by John DiSanti's avatar John DiSanti Committed by GitHub
Browse files

Fix repo org move issues (#3166)

This PR fixes issues introduced by moving the repository from
awslabs/smithy-rs to smithy-lang/smithy-rs.

----

_By submitting this pull request, I confirm that you can use, modify,
copy, and redistribute this contribution, under the terms of your
choice._
parent 7f8fef26
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -84,7 +84,7 @@ jobs:
    needs:
    - save-docker-login-token
    - acquire-base-image
    if: ${{ github.event.pull_request.head.repo.full_name == 'awslabs/smithy-rs' || toJSON(github.event.merge_group) != '{}' }}
    if: ${{ github.event.pull_request.head.repo.full_name == 'smithy-lang/smithy-rs' || toJSON(github.event.merge_group) != '{}' }}
    uses: ./.github/workflows/ci.yml
    with:
      run_sdk_examples: true
+2 −2
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ jobs:
  # it uploads the image as a build artifact for other jobs to download and use.
  acquire-base-image:
    name: Acquire Base Image
    if: ${{ github.event.pull_request.head.repo.full_name != 'awslabs/smithy-rs' }}
    if: ${{ github.event.pull_request.head.repo.full_name != 'smithy-lang/smithy-rs' }}
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v3
@@ -39,7 +39,7 @@ jobs:
  # Run shared CI after the Docker build image has either been rebuilt or found in ECR
  ci:
    needs: acquire-base-image
    if: ${{ github.event.pull_request.head.repo.full_name != 'awslabs/smithy-rs' }}
    if: ${{ github.event.pull_request.head.repo.full_name != 'smithy-lang/smithy-rs' }}
    uses: ./.github/workflows/ci.yml
    with:
      run_sdk_examples: true
+4 −4
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ jobs:
  # The login password is encrypted with the repo secret DOCKER_LOGIN_TOKEN_PASSPHRASE
  save-docker-login-token:
    name: Save a docker login token
    if: ${{ github.event.pull_request.head.repo.full_name == 'awslabs/smithy-rs' }}
    if: ${{ github.event.pull_request.head.repo.full_name == 'smithy-lang/smithy-rs' }}
    outputs:
      docker-login-password: ${{ steps.set-token.outputs.docker-login-password }}
    permissions:
@@ -51,7 +51,7 @@ jobs:
  acquire-base-image:
    name: Acquire Base Image
    needs: save-docker-login-token
    if: ${{ github.event.pull_request.head.repo.full_name == 'awslabs/smithy-rs' }}
    if: ${{ github.event.pull_request.head.repo.full_name == 'smithy-lang/smithy-rs' }}
    runs-on: smithy_ubuntu-latest_8-core
    env:
      ENCRYPTED_DOCKER_PASSWORD: ${{ needs.save-docker-login-token.outputs.docker-login-password }}
@@ -86,7 +86,7 @@ jobs:
    needs:
    - save-docker-login-token
    - acquire-base-image
    if: ${{ github.event.pull_request.head.repo.full_name == 'awslabs/smithy-rs' }}
    if: ${{ github.event.pull_request.head.repo.full_name == 'smithy-lang/smithy-rs' }}
    uses: ./.github/workflows/ci.yml
    with:
      run_sdk_examples: true
@@ -97,7 +97,7 @@ jobs:
  # The PR bot requires a Docker build image, so make it depend on the `acquire-base-image` job.
  pr_bot:
    name: PR Bot
    if: ${{ github.event.pull_request.head.repo.full_name == 'awslabs/smithy-rs' }}
    if: ${{ github.event.pull_request.head.repo.full_name == 'smithy-lang/smithy-rs' }}
    needs: acquire-base-image
    uses: ./.github/workflows/pull-request-bot.yml
    with:
+1 −1
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@ jobs:
    - name: Check out `smithy-rs`
      uses: actions/checkout@v3
      with:
        repository: awslabs/smithy-rs
        repository: smithy-lang/smithy-rs
        ref: ${{ inputs.generate_ref }}
        path: smithy-rs
    - name: Check out `aws-sdk-rust`
+295 −295

File changed.

Preview size limit exceeded, changes collapsed.

Loading