Skip to content

Sync Guild Features #39

Sync Guild Features

Sync Guild Features #39

name: "Sync Guild Features"
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * 1,5'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions: write-all
jobs:
sync-guild-features:
runs-on: ubuntu-latest
steps:
- name: "Checkout Repository"
uses: actions/checkout@v5
with:
fetch-depth: 0 # Fetch all history for all branches
- name: "Setup Python"
uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: "Setup UV"
uses: ./.github/actions/sync-uv
with:
groups: 'dev,ci'
- name: "Run guild features sync"
run: uv run python -m scripts.sync_guild_features
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}