Skip to content

Commit f4abb37

Browse files
greynewellclaude
andcommitted
Address CodeRabbit review feedback
- Add GOPATH/bin to PATH in CI workflow so pssg binary is found - Restrict CI to main branch only (skip PR builds) - Fix empty pill_class in supermodel-api-docs.md - Fix BlinkMacSystemFont casing for stylelint - Fix grammar: "low-overhead", "Next-generation" - Enable clean_build to prevent stale pages Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 336aa64 commit f4abb37

File tree

6 files changed

+11
-7
lines changed

6 files changed

+11
-7
lines changed

.github/workflows/build-index.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: Build Index
22

33
on:
44
push:
5+
branches: [main]
56
paths:
67
- 'data/**'
78
- 'templates/**'
@@ -35,6 +36,9 @@ jobs:
3536
- name: Install pssg
3637
run: go install github.com/greynewell/pssg/cmd/pssg@v0.3.0
3738

39+
- name: Add Go bin to PATH
40+
run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
41+
3842
- name: Build site
3943
run: pssg build -config pssg.yaml
4044

data/fastify.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
22
title: "fastify"
3-
description: "Fast and low overhead web framework for Node.js"
3+
description: "Fast and low-overhead web framework for Node.js"
44
category: "Community"
55
pill: "Backend"
66
pill_class: "pill-green"
77
upstream: "fastify/fastify"
88
docs_url: "/fastify/"
99
---
1010

11-
Fast and low overhead web framework for Node.js
11+
Fast and low-overhead web framework for Node.js

data/supermodel-api-docs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "supermodel-api-docs"
33
description: "Official documentation for the Supermodel Code Graph API."
44
category: "Supermodel Open Source"
55
pill: "Documentation"
6-
pill_class: ""
6+
pill_class: "pill-blue"
77
docs_url: "/supermodel-api-docs/"
88
---
99

data/vite.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
22
title: "vite"
3-
description: "Next generation frontend tooling — fast, lean, and flexible"
3+
description: "Next-generation frontend tooling — fast, lean, and flexible"
44
category: "Community"
55
pill: "Build Tool"
66
pill_class: "pill-blue"
77
upstream: "vitejs/vite"
88
docs_url: "/vite/"
99
---
1010

11-
Next generation frontend tooling — fast, lean, and flexible
11+
Next-generation frontend tooling — fast, lean, and flexible

pssg.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,5 +101,5 @@ templates:
101101
taxonomy_index: "taxonomy_index.html"
102102

103103
output:
104-
clean_build: false
104+
clean_build: true
105105
extract_css: "styles.css"

templates/_styles.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
--orange: #f59e0b;
1212
--red: #ef4444;
1313
--blue: #3b82f6;
14-
--font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
14+
--font: 'Inter', -apple-system, blinkmacsystemfont, sans-serif;
1515
--mono: 'JetBrains Mono', 'Fira Code', monospace;
1616
--max-w: 1200px;
1717
--radius: 8px;

0 commit comments

Comments
 (0)