Skip to content

Test Results Bot

Test Results Bot #7317

Workflow file for this run

name: Test Results Bot
on:
schedule:
- cron: '*/5 * * * *' # Run every 5 minutes
workflow_dispatch: # Allow manual triggering
jobs:
update-test-results:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install requests PyGithub
- name: Run Test Results Bot
env:
GH_BOT_PAT: ${{ secrets.GH_BOT_PAT }}
run: python bot.py