gihub Action同步别人仓库的工作流
同步别人仓库的工作流
name: misaka //工作流的名字
on:
schedule:
- cron: '14 */3 * * *' //拉取定时
workflow_dispatch: //工作流显示
watch:
types: started
repository_dispatch: //存储库显示
types: sync-misaka //种类同步
jobs:
repo-sync: //拉取同步
env:
PAT: ${{ secrets.PAT }}
runs-on: ubuntu-latest //运行在最新版ubuntu系统中
if: github.event.repository.owner.id == github.event.sender.id
steps:
- uses: actions/checkout@v2 //使用checkout@v2这个action获取源码
with:
persist-credentials: false
- name: sync misaka //使用建一个名为sync misaka的步骤
uses: repo-sync/github-sync@v2
if: env.PAT
with:
source_repo: "https://github.com/limoruirui/misaka.git" //拉取地址
source_branch: "master" //源分支
destination_branch: "misaka" //目的地分支
github_token: ${{ secrets.PAT }}