Skip to content

Update Configs

Update Configs #7378

Workflow file for this run

name: Update Configs
permissions: write-all
on:
push:
branches: [main]
schedule:
- cron: "*/30 * * * *"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: '3.x'
- run: cd Files && pip install -r requirements.txt
- run: cd Files && python app.py
- run: cd Files && python sort.py
- uses: EndBug/add-and-commit@v9
with:
author_name: T3stAcc
message: Updated!
add: .
push: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}