-
Notifications
You must be signed in to change notification settings - Fork 61
41 lines (35 loc) · 1.14 KB
/
sync-tutorials.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Sync Tutorials
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *' # 每天运行一次
jobs:
sync-tutorials:
runs-on: ubuntu-latest
steps:
- name: Checkout Frontend Repo
uses: actions/checkout@v2
with:
repository: 'WTFAcademy/frontend'
path: 'frontend'
fetch-depth: 0 # 确保能获取所有分支和标签
- name: Configure Git
run: git config --get remote.origin.url
working-directory: ./frontend
- name: Sync WTF Ethers Tutorials
run: |
git clone https://github.com/WTFAcademy/WTF-Ethers.git
cp -r WTF-Ethers/0{1..9}_* frontend/docs/ethers-101/
cp -r WTF-Ethers/10_* frontend/docs/ethers-101/
rm -rf WTF-Ethers
working-directory: ./frontend
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with:
token: ${{ secrets.GH_TOKEN }}
commit-message: Update tutorials
title: "Update Tutorials"
body: "This is an automated PR to update tutorials"
branch: "update-tutorials-${{ github.run_id }}"
base: "main"
labels: "automated pr"