docs: update implementation plan and TODO with GitHub issue sync details #2
This file contains hidden or 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: Sync GitHub Project | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "TODO.md" | |
| workflow_dispatch: | |
| concurrency: | |
| group: sync-github-project | |
| cancel-in-progress: false | |
| permissions: | |
| issues: write | |
| contents: read | |
| jobs: | |
| sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: "latest" | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Sync GitHub Project (milestones, labels, issues) | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: bun run sync:github-project |