mirror of
https://gitlab.com/fscarmen/warp.git
synced 2026-06-22 22:22:39 +08:00
b0299281ac
Former-commit-id: 3e8c182f77a8aef1c819d86eb8d78eabdc890180
55 lines
1.4 KiB
YAML
55 lines
1.4 KiB
YAML
name: GitHub Actions Mirror
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
# push:
|
|
# branches:
|
|
# - master
|
|
schedule:
|
|
- cron: '20 20 * * *'
|
|
|
|
jobs:
|
|
mirror_to_gitlab:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: 'Checkout'
|
|
uses: actions/checkout@v3.5.3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: 'Mirror to gitlab'
|
|
uses: pixta-dev/repository-mirroring-action@v1.1.1
|
|
with:
|
|
target_repo_url:
|
|
git@gitlab.com:${{ github.repository }}.git
|
|
ssh_private_key:
|
|
${{ secrets.PRIVATE_KEY }}
|
|
|
|
mirror_to_gitlab_project:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: 'Checkout'
|
|
uses: actions/checkout@v3.5.3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: 'Mirror to gitlab'
|
|
uses: pixta-dev/repository-mirroring-action@v1.1.1
|
|
with:
|
|
target_repo_url:
|
|
git@gitlab.com:ProjectWARP/warp-script.git
|
|
ssh_private_key:
|
|
${{ secrets.PRIVATE_KEY }}
|
|
|
|
mirror_to_bitbucket:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: 'Checkout'
|
|
uses: actions/checkout@v3.5.3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: 'Mirror to bitbucket'
|
|
uses: pixta-dev/repository-mirroring-action@v1.1.1
|
|
with:
|
|
target_repo_url:
|
|
git@bitbucket.org:${{ github.repository }}.git
|
|
ssh_private_key:
|
|
${{ secrets.PRIVATE_KEY }} |