Skip to content

Commit ae7b618

Browse files
authored
Merge pull request #14 from devlux76/copilot/investigate-todo-list-issue
2 parents df9f037 + f49695a commit ae7b618

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Sync GitHub Project
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- "TODO.md"
9+
workflow_dispatch:
10+
11+
concurrency:
12+
group: sync-github-project
13+
cancel-in-progress: false
14+
15+
permissions:
16+
issues: write
17+
contents: read
18+
19+
jobs:
20+
sync:
21+
runs-on: ubuntu-latest
22+
steps:
23+
- name: Checkout
24+
uses: actions/checkout@v4
25+
26+
- name: Setup Node
27+
uses: actions/setup-node@v4
28+
with:
29+
node-version: "20"
30+
cache: "npm"
31+
32+
- name: Install dependencies
33+
run: npm ci
34+
35+
- name: Sync GitHub Project (milestones, labels, issues)
36+
env:
37+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38+
run: npm run sync:github-project

0 commit comments

Comments
 (0)