Skip to content

Mirror to HuaweiCloud codehub Repo #64

Mirror to HuaweiCloud codehub Repo

Mirror to HuaweiCloud codehub Repo #64

name: Mirror to HuaweiCloud codehub Repo
on:
schedule:
# triggers the workflow every day at 3:30 UTC.
- cron: '30 3 * * *'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
to_codehub:
if: ${{github.repository == 'huaweicloudstack/terraform-provider-huaweicloudstack'}}
runs-on: ubuntu-latest
steps: # <-- must use actions/checkout before mirroring!
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: pixta-dev/repository-mirroring-action@v1
with:
target_repo_url:
[email protected]:3333300012/terraform-provider-huaweicloudstack.git
ssh_private_key: # <-- use 'secrets' to pass credential information.
${{ secrets.TF_MIRROR_PRIVATE_KEY }}