Skip to content

Run server scraper #178

Run server scraper

Run server scraper #178

Workflow file for this run

name: Run server scraper
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *' # once day
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: '3.12.5'
- name: Install python packages
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Execute script
run: python Main.py
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: README.md
id: auto-commit-action