Skip to content

Update RSVP Issues #431

Update RSVP Issues

Update RSVP Issues #431

Workflow file for this run

name: Update RSVP Issues
on:
push:
branches:
- main
schedule:
- cron: '0 * * * *'
workflow_dispatch:
permissions:
issues: write
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
repository: ${{ github.repository_owner }}/pubstandards-london
ref: main
persist-credentials: false
- name: Install uv
uses: astral-sh/setup-uv@v2
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Sync github issues for RSVPs
run: |
uv run python ./sync_github_issues.py
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}