Skip to content

ChuheGit-sync

ChuheGit-sync #2998

Workflow file for this run

name: ChuheGit-sync
on:
push:
branches:
- main
schedule:
# 格林威治时间 (GMT) 每日01时开始执行
- cron: '0 1 * * *'
workflow_dispatch:
watch:
types: started
repository_dispatch:
types: sync-ChuheGit/1
jobs:
repo-sync:
env:
PAT: ${{ secrets.PAT }}
runs-on: ubuntu-latest
if: github.event.repository.owner.id == github.event.sender.id
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- name: sync ChuheGit/1
uses: repo-sync/github-sync@v2
if: env.PAT
with:
source_repo: "https://github.com/ChuheGit/1.git"
source_branch: "main"
destination_branch: "ChuheGit"
github_token: ${{ secrets.PAT }}