Skip to content

Check Erdos problem statuses #4265

Check Erdos problem statuses

Check Erdos problem statuses #4265

name: Check Erdos problem statuses
on:
schedule:
- cron: '37 * * * *' # once an hour, 37 min past the hour
workflow_dispatch: # Allow manual trigger
jobs:
check:
runs-on: ubuntu-latest
if: github.repository == 'google-deepmind/formal-conjectures'
permissions:
issues: write
steps:
- uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
with:
python-version: '3.12'
- name: Install dependencies
run: pip install pyyaml
- name: Check statuses and create issues
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: python scripts/check_erdos_status.py --create-issues || true