-
Notifications
You must be signed in to change notification settings - Fork 61
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
1 parent
f7366d4
commit 66e6b31
Showing
1 changed file
with
44 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,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" |