Skip to content

Auto Update

Auto Update #677

Workflow file for this run

name: Auto Update
on:
workflow_dispatch:
schedule:
- cron: '0 8 * * *'
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install requests bs4 pytz
- name: Run .py Files
run: |
python scripts/asn.py
python scripts/rules.py
- name: Git Auto Commit
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Auto Update