Skip to content

Github to AWS CN CodeCommit Sync

Actions
Synchronize from GitHub to CodeCommit via GitHub Actions using IAM credentials
v1.2.2
Latest
Star (0)

Sync up to AWS CodeCommit Action

Synchronize from GitHub repository to AWS CodeCommit via GitHub Actions.
No need to ssh-private-key. Need to AWS IAM Credentials only.

Example usage

name: sync up to codecommit

on:
  push:
    tags-ignore:
      - '*'
    branches:
      - '*'

jobs:
  sync:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v3
        with:
          fetch-depth: 0

      - name: Configure AWS Credentials
        uses: aws-actions/[email protected]
        with:
          aws-access-key-id: ${{ secrets.TEST_AWS_ACCESS_KEY_ID }}
          aws-secret-access-key: ${{ secrets.TEST_AWS_SECRET_ACCESS_KEY }}
          aws-region: us-east-1

      - name: Sync up to CodeCommit
        uses: ValenW-C12/sync-up-to-codecommit-action@v1
        with:
          repository_name: test_repo
          aws_region: us-east-1

Inputs

  • repository_name Required CodeCommit repository name.
  • aws_region Required Region of the CodeCommit repository.

License

MIT

Github to AWS CN CodeCommit Sync is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

Synchronize from GitHub to CodeCommit via GitHub Actions using IAM credentials
v1.2.2
Latest

Github to AWS CN CodeCommit Sync is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.