-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (42 loc) · 1.17 KB
/
update_issues.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
name: sync_issues
on:
workflow_dispatch:
schedule:
- cron: '0 */12 * * *'
jobs:
sync-issues-from-nju-git:
name: sync issues from nju git
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@v2
- name: set up python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: configure pip
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: install python dependency
run: |
python -m pip install -r requirements.txt
- name: run sync.py
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: |-
python sync.py "False"
- name: commit and push
run: |-
git diff
git config --global user.email "[email protected]"
git config --global user.name "typoverflow-bot"
git add -A
git commit -m "Bot: upload images" || exit 0
git push
- name: print message
run: |
echo "successful."