Skip to content

lowking-sync

lowking-sync #3359

Workflow file for this run

name: lowking-sync
on:
push:
branches:
- master
schedule:
# 格林威治时间 (GMT) 每日01时开始执行
- cron: '0 1 * * *'
workflow_dispatch:
watch:
types: started
repository_dispatch:
types: sync-lowking/Scripts
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 lowking/Scripts
uses: repo-sync/github-sync@v2
if: env.PAT
with:
source_repo: "https://github.com/lowking/Scripts.git"
source_branch: "master"
destination_branch: "lowking"
github_token: ${{ secrets.PAT }}