-
Notifications
You must be signed in to change notification settings - Fork 344
53 lines (45 loc) · 1.44 KB
/
update_content.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
47
48
49
50
51
52
53
name: update_content
env:
PYTHON_VERSION: "3.8" # set this to the Python version to use
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
on:
issues:
types:
- labeled
jobs:
update-conf-list:
if: github.event.label.name == 'require to update content'
runs-on: ubuntu-latest
env:
FEISHU_URL: ${{ secrets.FEISHU_URL }}
permissions:
issues: write
contents: write
steps:
- uses: actions/checkout@v3
- name: Set up Python version
uses: actions/setup-python@v3
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install dependencies
run: pip install openpyxl requests
- name: Update the cache file from the issue
run: python maintain.py --issue ${{ toJson(github.event.issue.body) }}
- name: Commit files
id: commit
run: |
git config --local user.email "[email protected]"
git config --local user.name "github-actions"
git add --all
if [ -z "$(git status --porcelain)"]; then
echo "::set-output name=push::false"
else
git commit -m "chore: update content" -a
echo "::set-output name=push::true"
fi
shell: bash
- name: Push changes
if: steps.commit.outputs.push == 'true'
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}