Test Results Bot #7333
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |