Skip to content

Merge pull request #191 from jes16jupyter/main #57

Merge pull request #191 from jes16jupyter/main

Merge pull request #191 from jes16jupyter/main #57

name: Sync Tutorials
on:
workflow_dispatch:
schedule:

Check failure on line 5 in .github/workflows/sync-tutorials.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/sync-tutorials.yml

Invalid workflow file

You have an error in your yaml syntax on line 5
- cron: '0 0 * * 0' // 每周运行一次
jobs:
sync-tutorials:
runs-on: ubuntu-latest
steps:
- name: Checkout Current Repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Debug Current Directory
run: ls -al
- name: Setup Environment
run: |
sudo apt-get update
sudo apt-get install -y jq
- name: Run Sync Script
id: sync
run: |
chmod +x sync.sh
./sync.sh
temp=$(cat temp.txt)
echo $temp
echo "::set-output name=changes::$temp"
rm temp.txt
- name: Generate Sidebar
run: npm run generate:sidebar
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.GH_TOKEN }} # 确保使用正确的访问令牌
commit-message: Update tutorials
title: "Update Tutorials"
body: "${{ steps.sync.outputs.changes }}"
branch: "update-tutorials-${{ github.run_id }}"
base: "main"
labels: "automated pr"