Skip to content

Run main.py and Commit Changes #38

Run main.py and Commit Changes

Run main.py and Commit Changes #38

Workflow file for this run

name: Run main.py and Commit Changes
on:
schedule:
- cron: '0 0 * * *' # Runs daily at midnight (UTC)
workflow_dispatch: # Allows manual triggering
jobs:
run-and-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
persist-credentials: false # Disable automatic token persistence
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12.3' # Specify the Python version you need
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run main.py
run: cd src && python main.py
- name: Configure Git
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
- name: Commit changes
run: |
git add .
git commit -m "Automated commit by GitHub Actions"
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}