All checks were successful
Sync Beads to Gitea Issues / sync-beads (push) Successful in 7s
bd sync: 2026-01-19 21:41:13
28 lines
648 B
YAML
28 lines
648 B
YAML
name: Sync Beads to Gitea Issues
|
|
on:
|
|
push:
|
|
branches:
|
|
- main # Adjust if your default branch is different
|
|
|
|
jobs:
|
|
sync-beads:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.x"
|
|
|
|
- name: Install dependencies
|
|
run: pip install requests
|
|
|
|
- name: Run Sync Script
|
|
env:
|
|
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}
|
|
GITEA_URL: ${{ github.server_url }}
|
|
REPO_NAME: ${{ github.repository }}
|
|
run: python .gitea/sync_beads.py
|