We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents df9f037 + f49695a commit ae7b618Copy full SHA for ae7b618
.github/workflows/sync-github-project.yml
@@ -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