v1.0 Sing-box Family bucket.

This commit is contained in:
fscarmen
2023-11-06 16:05:07 +00:00
parent 7ba365a33c
commit aaf1f4e07b
3 changed files with 287 additions and 22 deletions
+37
View File
@@ -0,0 +1,37 @@
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.1.1
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_bitbucket:
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/checkout@v4.1.1
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 }}