Skip to content

Commit 36bd5ed

Browse files
foolipcaptainbrossettidoust
authored
Create/update an issue per feature (#7)
Co-authored-by: Patrick Brosset <[email protected]> Co-authored-by: François Daoust <[email protected]>
1 parent 162e6ce commit 36bd5ed

File tree

5 files changed

+715
-456
lines changed

5 files changed

+715
-456
lines changed

.github/workflows/update-issues.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: update-issues
2+
on:
3+
# Runs daily at 05:55 UTC, or manually triggered
4+
schedule:
5+
- cron: "55 5 * * *"
6+
workflow_dispatch:
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v4
13+
- name: Setup node
14+
uses: actions/setup-node@v4
15+
with:
16+
node-version: 22.x
17+
- name: Install dependencies
18+
run: npm ci
19+
- name: Build
20+
run: npm run update-issues
21+
env:
22+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23+
- name: Upload
24+
uses: actions/upload-pages-artifact@v3
25+
with:
26+
path: out/
27+
deploy:
28+
needs: build
29+
permissions:
30+
pages: write
31+
id-token: write
32+
environment:
33+
name: github-pages
34+
url: ${{ steps.deployment.outputs.page_url }}
35+
runs-on: ubuntu-latest
36+
steps:
37+
- name: Deploy to GitHub Pages
38+
id: deployment
39+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
node_modules/
2+
out/

0 commit comments

Comments
 (0)