Skip to content

CI

CI #46957

Workflow file for this run

name: CI
on:
push:
schedule:
- cron: '0 * * * *'
jobs:
maybe_update_meetup:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.14
uses: actions/setup-python@v6
with:
python-version: 3.14
cache: 'pip'
- name: regenerate _data/meetings.json
run: python3.14 -m pip install -r scripts/requirements.txt && TZ=Europe/Warsaw python3.14 ./scripts/meetings.py && cp _data/live_meetings.json api_live_meetings.json
- uses: stefanzweifel/git-auto-commit-action@v5.2.0
with:
commit_message: Autoupdate _data/meetings.json
commit_author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>