feat: implemented StaticRegionProvider class that always returns a st… #495
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Sync Mirror | |
| on: | |
| push: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| permissions: { } | |
| jobs: | |
| git-sync: | |
| # Only sync when pushing to source repo | |
| if: github.repository == 'aws/aws-sdk-kotlin' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: git-sync | |
| uses: wei/git-sync@v3 | |
| with: | |
| source_repo: "https://aws-sdk-kotlin-ci:${{ secrets.CI_USER_PAT }}@github.com/aws/aws-sdk-kotlin.git" | |
| source_branch: "main" | |
| destination_repo: "https://aws-sdk-kotlin-ci:${{ secrets.CI_USER_PAT }}@github.com/aws/private-aws-sdk-kotlin-staging.git" | |
| destination_branch: "main" |