Skip to content

poidh link updated

poidh link updated #7

Workflow file for this run

name: Mirroring
on:
push:
branches:
- main
jobs:
to_bitbucket:
runs-on: ubuntu-latest
timeout-minutes: 20
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]:punk-domains/degen-name.git
ssh_private_key: # <-- use 'secrets' to pass credential information.
${{ secrets.MIRROR_KEY }}
to_gitlab:
runs-on: ubuntu-latest
timeout-minutes: 20
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]:degen-dapps/degen-name.git
ssh_private_key: # <-- use 'secrets' to pass credential information.
${{ secrets.MIRROR_KEY }}