Skip to content

GitHub Actions Mirror #339

GitHub Actions Mirror

GitHub Actions Mirror #339

Workflow file for this run

name: GitHub Actions Mirror
on:
workflow_dispatch:
schedule:
- cron: '15 20 * * *'
jobs:
mirror_to_gitlab:
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/[email protected]
with:
fetch-depth: 0
- name: 'Mirror to gitlab'
uses: pixta-dev/[email protected]
with:
target_repo_url:
[email protected]:${{ github.repository }}.git
ssh_private_key:
${{ secrets.PRIVATE_KEY }}
mirror_to_bitbucket:
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/[email protected]
with:
fetch-depth: 0
- name: 'Mirror to bitbucket'
uses: pixta-dev/[email protected]
with:
target_repo_url:
[email protected]:${{ github.repository }}.git
ssh_private_key:
${{ secrets.PRIVATE_KEY }}