Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions .github/workflows/sync-github-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
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:
Comment on lines +15 to +22
Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot excellent catch! Please fix it exercising your best judgement.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added in f49695a. Used cancel-in-progress: false so a queued run always executes rather than being dropped — safe because the script is idempotent and skips already-existing items regardless.

- name: Checkout
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"

- name: Install dependencies
run: npm ci

- name: Sync GitHub Project (milestones, labels, issues)
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npm run sync:github-project
Loading