bd sync: 2026-01-19 21:41:13
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
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
|
||||
Reference in New Issue
Block a user