Skip to content

Generate indexes

Generate indexes #856

Workflow file for this run

name: Generate indexes
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
workflow_dispatch:
schedule:
- cron: '1 0 * * *'
jobs:
build:
name: Run python scripts
runs-on: ubuntu-latest
steps:
- name: Check-out repository
uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install Python dependencies
run: pip install -Uq PyGithub requests
- name: Generate indexes
run: python .github/scripts/generateindex.py
env:
CONTEXT_GITHUB: ${{ toJson(github) }}