Add workflow

This commit is contained in:
Nemo 2023-01-12 15:46:15 +05:30
parent cebf6483c9
commit 47e573c6d0
2 changed files with 36 additions and 0 deletions

29
.github/workflows/update.yml vendored Normal file
View File

@ -0,0 +1,29 @@
name: Update Data
on:
workflow_dispatch:
push:
schedule:
- cron: '7 18 * * *'
jobs:
update:
permissions:
contents: write
packages: write
name: Update data
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Update data
run: |
pip install -r requirements.txt
python update.py
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Update KB Data
commit_author: 'github-actions[bot] <github-actions[bot]@users.noreply.github.com>'
file_pattern: "data.json"

7
requirements.txt Normal file
View File

@ -0,0 +1,7 @@
beautifulsoup4==4.11.1
html5lib==1.1
pyaml==21.10.1
PyYAML==6.0
six==1.16.0
soupsieve==2.3.2.post1
webencodings==0.5.1