forked from liuqi6968/AutoSyncScript
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
微信公众号少年歌行PRO
authored
Apr 30, 2021
1 parent
5517004
commit 964bf30
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
## sunert 新仓库自动定时同步代码 ,教程公众号文章讲过了,不废话了,地址https://mp.weixin.qq.com/s/fcI4vQHD8TNajvTML9g3AA | ||
|
||
## 每隔3小时拉取一次作者脚本到自己仓库的sunert分支 | ||
|
||
|
||
|
||
name: Sunertnew-sync | ||
on: | ||
schedule: | ||
- cron: '3 */3 * * *' | ||
workflow_dispatch: | ||
watch: | ||
types: started | ||
repository_dispatch: | ||
types: sync-Sunert-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 Sunertnew-Scripts | ||
uses: repo-sync/github-sync@v2 | ||
if: env.PAT | ||
with: | ||
source_repo: "https://github.com/GoodHolidays/Scripts.git" | ||
source_branch: "master" | ||
destination_branch: "Sunert" | ||
github_token: ${{ secrets.PAT }} |