-
Notifications
You must be signed in to change notification settings - Fork 61
46 lines (40 loc) · 1.15 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
42
43
44
45
46
name: Sync Tutorials
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: 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: 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.
${{ steps.sync.outputs.changes }}
branch: "update-tutorials-${{ github.run_id }}"
base: "main"
labels: "automated pr"