Sync Tutorials #3
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
name: Sync Tutorials New | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * *' # 每天运行一次 | |
jobs: | |
sync-tutorials: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Current Repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Checkout Frontend Repo | |
uses: actions/checkout@v4 | |
with: | |
repository: 'WTFAcademy/frontend' | |
path: 'frontend' | |
fetch-depth: 0 | |
- name: Sync WTF Ethers Tutorials | |
run: | | |
git clone https://github.com/WTFAcademy/WTF-Ethers.git | |
mkdir -p frontend/docs/ethers-101/ | |
cp -r WTF-Ethers/0{1..9}_* frontend/docs/ethers-101/ | |
cp -r WTF-Ethers/10_* frontend/docs/ethers-101/ | |
rm -rf WTF-Ethers | |
cd frontend | |
git add docs/ethers-101/ | |
git config --global user.name 'github-actions[bot]' | |
git config --global user.email 'github-actions[bot]@users.noreply.github.com' | |
git commit -m "Update tutorials" || echo "No changes to commit" | |
- 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" |