File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 53
53
54
54
- name : Generate TypeDoc API documentation
55
55
run : |
56
- # Install typedoc with modern theme
57
- pnpm add -D typedoc@latest @typedoc/plugin-missing-exports@latest
56
+ # Install typedoc
57
+ pnpm add -D typedoc@latest
58
58
59
59
# Generate comprehensive API documentation
60
60
npx typedoc src/main.ts src/lib/*.ts --out _site/docs \
63
63
--exclude "**/*.test.ts" \
64
64
--exclude "**/__tests__/**" \
65
65
--exclude "**/*.bench.ts" \
66
- --plugin @typedoc/plugin-missing-exports \
67
66
--githubPages true \
68
67
--includeVersion \
69
68
--sort source-order \
Original file line number Diff line number Diff line change @@ -33,15 +33,15 @@ jobs:
33
33
with :
34
34
# prettier-ignore
35
35
project-url : https://github.com/users/${{ github.repository_owner }}/projects/${{ env.PROJECT_NUMBER }}
36
- github-token : ${{ secrets.GITHUB_TOKEN }}
36
+ github-token : ${{ secrets.ADD_TO_PROJECT_PAT }}
37
37
38
38
- name : Add PR to project
39
39
if : github.event_name == 'pull_request' && github.event.action == 'opened'
40
40
uses : actions/add-to-project@244f685bbc3b7adfa8466e08b698b5577571133e # v1.0.2
41
41
with :
42
42
# prettier-ignore
43
43
project-url : https://github.com/users/${{ github.repository_owner }}/projects/${{ env.PROJECT_NUMBER }}
44
- github-token : ${{ secrets.GITHUB_TOKEN }}
44
+ github-token : ${{ secrets.ADD_TO_PROJECT_PAT }}
45
45
46
46
- name : Move items based on status
47
47
uses : actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
@@ -179,6 +179,7 @@ jobs:
179
179
const project = projectData.user?.projectV2;
180
180
if (!project) {
181
181
console.log(`Project ${projectNumber} not found for user ${owner}`);
182
+ console.log('This may be due to insufficient permissions. Consider using a Personal Access Token (PAT) with project permissions.');
182
183
return;
183
184
}
184
185
Original file line number Diff line number Diff line change @@ -356,16 +356,16 @@ jobs:
356
356
EOF
357
357
358
358
- name : Setup Pages
359
- uses : actions/configure-pages@v5
359
+ uses : actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0
360
360
361
361
- name : Upload Pages artifact
362
- uses : actions/upload-pages-artifact@v3
362
+ uses : actions/upload-pages-artifact@7b1f4a764d45c48632c6b24a0339c27f5614fb0b # v4.0.0
363
363
with :
364
364
path : ' _site'
365
365
366
366
- name : Deploy to GitHub Pages
367
367
id : deployment
368
- uses : actions/deploy-pages@v4
368
+ uses : actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4.0.5
369
369
370
370
- name : Update dist SBOM in main branch
371
371
run : |
You can’t perform that action at this time.
0 commit comments