Skip to content

update

update #351

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: update
on:
repository_dispatch:
push:
branches:
- main
workflow_dispatch:
schedule:
- cron: "00 01 * * *"
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: update
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
python run.py
- name: Commit and push if changed
run: |
git config --global core.quotepath false
git config --global user.email "test"
git config --global user.name "test"
git add .
git commit --allow-empty -m "Auto Updated"
git push --quiet