Update RSVP Issues #438
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: 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 }} |