Sync DeepSpark #964
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a basic workflow to help you get started with Actions | |
name: Sync DeepSpark | |
on: | |
schedule: | |
# daily run at UTC 16:00 (0:00@Beijing Time) | |
- cron: '0 16 * * 1-5' | |
workflow_dispatch: | |
jobs: | |
Sync: | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 60 | |
steps: | |
- name: mirror from gitee to github | |
uses: Yikun/[email protected] | |
with: | |
src: gitee/deep-spark | |
dst: github/Deep-Spark | |
dst_key: ${{ secrets.MIRROR_PRIVATE_KEY }} | |
dst_token: ${{ secrets.MIRROR_TOKEN }} | |
account_type: org | |
static_list: "deepspark,deepsparkhub-GPL" | |
debug: true | |
force_update: true | |
clone_style: https |