forked from hyschive/gamer-fork
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (34 loc) · 1.18 KB
/
update_test_problem_pages.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
name: Update test problem wiki page
on:
workflow_dispatch:
push:
paths:
- 'example/test_problem/*/*/README.md'
# - 'example/test_problem/Template/README.md'
- 'tool/wiki/sync_test_problem_pages.py'
env:
GIT_AUTHOR_NAME: ${{ github.actor }}
GIT_AUTHOR_EMAIL: ${{ secrets.MY_EMAIL }}
jobs:
Update-all-parameters-page:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
token: ${{ secrets.TOKEN_FOR_WIKI }}
- name: run script
run: |
cd tool/wiki
python --version
python sync_test_problem_pages.py
- name: set git config
run: |
git config --global user.email "${{env.GIT_AUTHOR_EMAIL}}"
git config --global user.name "${{env.GIT_AUTHOR_NAME}}"
- name: make a commit and push if the file changed
run: |
( git diff --exit-code doc/wiki/Test-Problem-related/* && git diff --exit-code doc/wiki/Test-Problems.md ) || \
( git add doc/wiki/Test-Problem-related/* && git add doc/wiki/Test-Problems.md && \
git commit -m "[Workflow] Update test problem wiki pages" && \
git push )