mirror of
https://github.com/fscarmen/sing-box.git
synced 2026-08-10 17:55:16 +08:00
22 lines
512 B
YAML
22 lines
512 B
YAML
name: GitHub Actions Mirror
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '15 20 * * *'
|
|
|
|
jobs:
|
|
mirror_to_gitlab:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: 'Checkout'
|
|
uses: actions/checkout@v4.2.2
|
|
with:
|
|
fetch-depth: 0
|
|
- name: 'Mirror to gitlab'
|
|
uses: fscarmen/repository-mirroring-action@v1.0.0
|
|
with:
|
|
target_repo_url:
|
|
git@gitlab.com:${{ github.repository }}.git
|
|
ssh_private_key:
|
|
${{ secrets.PRIVATE_KEY }} |