Skip to content

Commit

Permalink
Create sync-test.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
AmazingAng committed May 29, 2024
1 parent f7366d4 commit 66e6b31
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/sync-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
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:
path: 'frontend'
fetch-depth: 0 # 确保能获取所有分支和标签

- name: Configure safe directory
run: git config --global --add safe.directory ${{ github.workspace }}/frontend
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: Prepare for pull request
run: |
git config --local --get remote.origin.url
working-directory: ./frontend # 显式指定 Git 操作目录

- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
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"

0 comments on commit 66e6b31

Please sign in to comment.