Payload
{
"action": "requested",
"check_suite": {
"id": 72101361685,
"node_id": "CS_kwDOQwVekM8AAAAQyZN4FQ",
"head_branch": "main",
"head_sha": "eb06fb4a275f66782f1f2dc5ac5e5f4e1a9dac50",
"status": "queued",
"conclusion": null,
"url": "https://api.github.com/repos/darkmatter/web/check-suites/72101361685",
"before": "60c9518e1847f49cd05cb83a2c5516cab37ec95e",
"after": "eb06fb4a275f66782f1f2dc5ac5e5f4e1a9dac50",
"pull_requests": [],
"app": {
"id": 3663660,
"client_id": "Iv23lifA2SLzhklKJM5M",
"slug": "darkmatter",
"node_id": "A_kwHOARAg0c4AN-cs",
"owner": {
"login": "darkmatter",
"id": 17834193,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE3ODM0MTkz",
"avatar_url": "https://avatars.githubusercontent.com/u/17834193?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/darkmatter",
"html_url": "https://github.com/darkmatter",
"followers_url": "https://api.github.com/users/darkmatter/followers",
"following_url": "https://api.github.com/users/darkmatter/following{/other_user}",
"gists_url": "https://api.github.com/users/darkmatter/gists{/gist_id}",
"starred_url": "https://api.github.com/users/darkmatter/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/darkmatter/subscriptions",
"organizations_url": "https://api.github.com/users/darkmatter/orgs",
"repos_url": "https://api.github.com/users/darkmatter/repos",
"events_url": "https://api.github.com/users/darkmatter/events{/privacy}",
"received_events_url": "https://api.github.com/users/darkmatter/received_events",
"type": "Organization",
"user_view_type": "public",
"site_admin": false
},
"name": "darkmatter",
"description": "",
"external_url": "https://dm.sh",
"html_url": "https://github.com/apps/darkmatter",
"created_at": "2026-05-10T08:36:27Z",
"updated_at": "2026-05-22T23:47:35Z",
"permissions": {
"actions": "write",
"actions_variables": "read",
"checks": "write",
"contents": "write",
"custom_properties_for_organizations": "write",
"deployments": "write",
"discussions": "write",
"issues": "write",
"issue_fields": "read",
"issue_types": "read",
"members": "read",
"metadata": "read",
"organization_actions_variables": "write",
"organization_agent_secrets": "read",
"organization_agent_variables": "read",
"organization_codespaces": "write",
"organization_codespaces_secrets": "write",
"organization_copilot_agent_settings": "read",
"organization_custom_properties": "write",
"organization_dependabot_dismissal_requests": "read",
"organization_dependabot_secrets": "read",
"organization_events": "read",
"organization_hooks": "write",
"organization_personal_access_tokens": "write",
"organization_personal_access_token_requests": "write",
"organization_private_registries": "write",
"organization_secrets": "write",
"organization_self_hosted_runners": "write",
"org_copilot_content_exclusion": "read",
"pull_requests": "write",
"repository_hooks": "write",
"secrets": "read",
"statuses": "write",
"user_events": "read",
"workflows": "write"
},
"events": [
"commit_comment",
"create",
"deployment",
"deployment_review",
"deployment_status",
"discussion",
"discussion_comment",
"issues",
"issue_comment",
"pull_request",
"pull_request_review",
"pull_request_review_comment",
"pull_request_review_thread",
"push",
"status",
"sub_issues",
"workflow_job"
]
},
"created_at": "2026-06-03T08:49:50Z",
"updated_at": "2026-06-03T08:49:50Z",
"rerequestable": true,
"runs_rerequestable": true,
"latest_check_runs_count": 0,
"check_runs_url": "https://api.github.com/repos/darkmatter/web/check-suites/72101361685/check-runs",
"head_commit": {
"id": "eb06fb4a275f66782f1f2dc5ac5e5f4e1a9dac50",
"tree_id": "cb8cd0c878f48bc3c5c0efe05f116ac82325c5d6",
"message": "feat(design-system): add /design-system route + fix font var resolution (#23)\n\n* feat(design-system): add /design-system route + fix font var resolution\n\nAdds a static design system showcase at /design-system that documents the\nreal codebase primitives (Button, Badge, Card, Input from components/ui)\nplus the live tokens, type ramp, color palette, iconography, brand marks,\nvoice rules, and product card variants used across the site.\n\nAlso moves the Next.js Font className from <body> to <html> so the\n--font-source-code-pro and --font-inter custom properties land directly\non :root. Tailwind 4's @theme block aliases --font-mono and --font-sans\nto those variables, and putting them on :root makes the chain resolve\nwithout depending on body's cascade.\n\nAdds .claude/launch.json for the preview manager.\n\nCo-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>\n\n* fix(design-system): port to RedwoodSDK app structure\n\nThe merge with main pulled in the migration from Next.js to RedwoodSDK +\nVite + Cloudflare Workers. Pages are now declared in src/app/pages/* and\nrouted explicitly in src/worker.tsx; the legacy app/ directory is no\nlonger served. This commit:\n\n- Moves the page from app/design-system/page.tsx to\n src/app/pages/DesignSystem.tsx (named export, no Next Metadata).\n- Drops the bottom-of-page <footer/>; SiteLayout now supplies SiteFooter.\n- Replaces the lucide-react Github icon (removed upstream) with the local\n @/components/ui/github-icon.GitHubIcon component.\n- Registers route(\"/design-system\", DesignSystem) inside the SiteLayout\n block so the page picks up the global header + footer.\n- Switches .claude/launch.json from `next dev` (port 3000) to `vite dev`\n (port 5173) to match the new toolchain.\n\nCo-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>\n\n* Move DesignSystem route under internal path\n\n---------\n\nCo-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>",
"timestamp": "2026-06-03T08:49:47Z",
"author": {
"name": "cooper",
"email": "1325802+czxtm@users.noreply.github.com"
},
"committer": {
"name": "GitHub",
"email": "noreply@github.com"
}
}
},
"repository": {
"id": 1124425360,
"node_id": "R_kgDOQwVekA",
"name": "web",
"full_name": "darkmatter/web",
"private": true,
"owner": {
"login": "darkmatter",
"id": 17834193,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE3ODM0MTkz",
"avatar_url": "https://avatars.githubusercontent.com/u/17834193?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/darkmatter",
"html_url": "https://github.com/darkmatter",
"followers_url": "https://api.github.com/users/darkmatter/followers",
"following_url": "https://api.github.com/users/darkmatter/following{/other_user}",
"gists_url": "https://api.github.com/users/darkmatter/gists{/gist_id}",
"starred_url": "https://api.github.com/users/darkmatter/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/darkmatter/subscriptions",
"organizations_url": "https://api.github.com/users/darkmatter/orgs",
"repos_url": "https://api.github.com/users/darkmatter/repos",
"events_url": "https://api.github.com/users/darkmatter/events{/privacy}",
"received_events_url": "https://api.github.com/users/darkmatter/received_events",
"type": "Organization",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/darkmatter/web",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/darkmatter/web",
"forks_url": "https://api.github.com/repos/darkmatter/web/forks",
"keys_url": "https://api.github.com/repos/darkmatter/web/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/darkmatter/web/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/darkmatter/web/teams",
"hooks_url": "https://api.github.com/repos/darkmatter/web/hooks",
"issue_events_url": "https://api.github.com/repos/darkmatter/web/issues/events{/number}",
"events_url": "https://api.github.com/repos/darkmatter/web/events",
"assignees_url": "https://api.github.com/repos/darkmatter/web/assignees{/user}",
"branches_url": "https://api.github.com/repos/darkmatter/web/branches{/branch}",
"tags_url": "https://api.github.com/repos/darkmatter/web/tags",
"blobs_url": "https://api.github.com/repos/darkmatter/web/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/darkmatter/web/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/darkmatter/web/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/darkmatter/web/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/darkmatter/web/statuses/{sha}",
"languages_url": "https://api.github.com/repos/darkmatter/web/languages",
"stargazers_url": "https://api.github.com/repos/darkmatter/web/stargazers",
"contributors_url": "https://api.github.com/repos/darkmatter/web/contributors",
"subscribers_url": "https://api.github.com/repos/darkmatter/web/subscribers",
"subscription_url": "https://api.github.com/repos/darkmatter/web/subscription",
"commits_url": "https://api.github.com/repos/darkmatter/web/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/darkmatter/web/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/darkmatter/web/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/darkmatter/web/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/darkmatter/web/contents/{+path}",
"compare_url": "https://api.github.com/repos/darkmatter/web/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/darkmatter/web/merges",
"archive_url": "https://api.github.com/repos/darkmatter/web/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/darkmatter/web/downloads",
"issues_url": "https://api.github.com/repos/darkmatter/web/issues{/number}",
"pulls_url": "https://api.github.com/repos/darkmatter/web/pulls{/number}",
"milestones_url": "https://api.github.com/repos/darkmatter/web/milestones{/number}",
"notifications_url": "https://api.github.com/repos/darkmatter/web/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/darkmatter/web/labels{/name}",
"releases_url": "https://api.github.com/repos/darkmatter/web/releases{/id}",
"deployments_url": "https://api.github.com/repos/darkmatter/web/deployments",
"created_at": "2025-12-29T02:11:36Z",
"updated_at": "2026-06-03T08:49:08Z",
"pushed_at": "2026-06-03T08:49:47Z",
"git_url": "git://github.com/darkmatter/web.git",
"ssh_url": "git@github.com:darkmatter/web.git",
"clone_url": "https://github.com/darkmatter/web.git",
"svn_url": "https://github.com/darkmatter/web",
"homepage": "https://web-darkmatterlabs.vercel.app",
"size": 7908,
"stargazers_count": 0,
"watchers_count": 0,
"language": "TypeScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": false,
"is_template": false,
"web_commit_signoff_required": false,
"has_pull_requests": true,
"pull_request_creation_policy": "all",
"topics": [],
"visibility": "internal",
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "main",
"custom_properties": {}
},
"organization": {
"login": "darkmatter",
"id": 17834193,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE3ODM0MTkz",
"url": "https://api.github.com/orgs/darkmatter",
"repos_url": "https://api.github.com/orgs/darkmatter/repos",
"events_url": "https://api.github.com/orgs/darkmatter/events",
"hooks_url": "https://api.github.com/orgs/darkmatter/hooks",
"issues_url": "https://api.github.com/orgs/darkmatter/issues",
"members_url": "https://api.github.com/orgs/darkmatter/members{/member}",
"public_members_url": "https://api.github.com/orgs/darkmatter/public_members{/member}",
"avatar_url": "https://avatars.githubusercontent.com/u/17834193?v=4",
"description": ""
},
"enterprise": {
"id": 469843,
"slug": "darkmatter",
"name": "darkmatter",
"node_id": "E_kgDOAAcrUw",
"avatar_url": "https://avatars.githubusercontent.com/b/469843?v=4",
"description": "",
"website_url": "darkmatter.io",
"html_url": "https://github.com/enterprises/darkmatter",
"created_at": "2025-09-07T16:01:00Z",
"updated_at": "2026-05-09T15:34:55Z"
},
"sender": {
"login": "czxtm",
"id": 1325802,
"node_id": "MDQ6VXNlcjEzMjU4MDI=",
"avatar_url": "https://avatars.githubusercontent.com/u/1325802?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/czxtm",
"html_url": "https://github.com/czxtm",
"followers_url": "https://api.github.com/users/czxtm/followers",
"following_url": "https://api.github.com/users/czxtm/following{/other_user}",
"gists_url": "https://api.github.com/users/czxtm/gists{/gist_id}",
"starred_url": "https://api.github.com/users/czxtm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/czxtm/subscriptions",
"organizations_url": "https://api.github.com/users/czxtm/orgs",
"repos_url": "https://api.github.com/users/czxtm/repos",
"events_url": "https://api.github.com/users/czxtm/events{/privacy}",
"received_events_url": "https://api.github.com/users/czxtm/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"installation": {
"id": 131074261,
"node_id": "MDIzOkludGVncmF0aW9uSW5zdGFsbGF0aW9uMTMxMDc0MjYx"
}
}