Skip to content
upload-cloud

GitHub Action

Mirror to BitBucket GitHub Action

v2 Pre-release

Mirror to BitBucket GitHub Action

upload-cloud

Mirror to BitBucket GitHub Action

Mirrors a GitHub Git repository to BitBucket

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Mirror to BitBucket GitHub Action

uses: heussd/mirror-to-bitbucket-github-action@v2

Learn more about this action in heussd/mirror-to-bitbucket-github-action

Choose a version

title summary
Mirror to Bitbucket GitHub Action
GitHub Action to automatically mirror to Bitbucket.

Mirrors a GitHub Git repository to Bitbucket. If no corresponding Bitbucket repository exists, it is created using the Bitbucket API 2.0.

Please note: make sure that you checkout the entire repository before using this. By default, actions/checkout@v2 only creates a shallow clone. See section example usage on how to do a complete clone.

Required Inputs

password

Password to use on Bitbucket for authentication and for pushing. Create a new App Password with the following permissions:

Required App Password Permissions: Account - read, Repositories - read, write, admin

Optional Inputs

username

Username to use on Bitbucket for 1) authentication and as 2) workspace name. Default: GitHub user name.

repository

Name of the repository on Bitbucket. If it does not exist, it is created automatically. Default: GitHub repository name.

spacename

Name of the space in which the repository should be contained on Bitbucket. Default: GitHub user name.

Outputs

None

Example usage

  - name: Checkout
    uses: actions/checkout@v2
    with:
      fetch-depth: 0 # <-- clone with complete history
  - name: Push
    uses: heussd/mirror-to-bitbucket-github-action@v2
    with:
      password: ${{ secrets.BITBUCKET_PASSWORD }}

Example with all parameters

  - name: Checkout
    uses: actions/checkout@v2
    with:
      fetch-depth: 0 # <-- clone with complete history
  - name: Push
    uses: heussd/mirror-to-bitbucket-github-action@v2
    with:
      username: mycrazybbusername
      spacename: teamspace
      repository: bestrepo
      password: ${{ secrets.BITBUCKET_PASSWORD }}