Skip to content

Run Python script and commit changes #796

Run Python script and commit changes

Run Python script and commit changes #796

Workflow file for this run

name: Run Python script and commit changes
on:
schedule:
- cron: '*/10 * * * *'
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run Python script
run: python main.py
- name: Commit
run: |
git config --local user.email "[email protected]"
git config --local user.name "elliottophellia"
git commit -am "Updated Proxies~ UwU"
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
env:
CI: true