Skip to content

Commit 0b0a11f

Browse files
committed
Create/update an issue per feature
1 parent 162e6ce commit 0b0a11f

File tree

4 files changed

+305
-631
lines changed

4 files changed

+305
-631
lines changed

.github/workflows/update-issues.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: update-issues
2+
on:
3+
workflow_dispatch:
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Checkout
9+
uses: actions/checkout@v4
10+
- name: Setup node
11+
uses: actions/setup-node@v4
12+
with:
13+
node-version: 22.x
14+
- name: Install dependencies
15+
run: npm ci
16+
- name: Build
17+
run: npm run update-issues
18+
env:
19+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)