Payload
{
"action": "requested",
"check_suite": {
"id": 72132830332,
"node_id": "CS_kwDOSB6EzM8AAAAQy3OkfA",
"head_branch": "jp/fix-merge-pr-255",
"head_sha": "8a19689e611b01a516272c115478e4dfdecd266f",
"status": "queued",
"conclusion": null,
"url": "https://api.github.com/repos/darkmatter/nixmac/check-suites/72132830332",
"before": "9be67b719bcce760ef21e5d01cf26eae6e65ae7b",
"after": "8a19689e611b01a516272c115478e4dfdecd266f",
"pull_requests": [
{
"url": "https://api.github.com/repos/darkmatter/nixmac/pulls/292",
"id": 3794878845,
"number": 292,
"head": {
"ref": "jp/fix-merge-pr-255",
"sha": "8a19689e611b01a516272c115478e4dfdecd266f",
"repo": {
"id": 1209959628,
"url": "https://api.github.com/repos/darkmatter/nixmac",
"name": "nixmac"
}
},
"base": {
"ref": "develop",
"sha": "dd78e5f8fc4d85c062a07b3c39703d07cf8b6e8a",
"repo": {
"id": 1209959628,
"url": "https://api.github.com/repos/darkmatter/nixmac",
"name": "nixmac"
}
}
}
],
"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-03T12:13:55Z",
"updated_at": "2026-06-03T12:13:55Z",
"rerequestable": true,
"runs_rerequestable": true,
"latest_check_runs_count": 0,
"check_runs_url": "https://api.github.com/repos/darkmatter/nixmac/check-suites/72132830332/check-runs",
"head_commit": {
"id": "8a19689e611b01a516272c115478e4dfdecd266f",
"tree_id": "3d7063e27314c94ce08be4fab426a0be8818e74f",
"message": "fix: repair branch-wide breakage so the merge compiles & tests pass\n\nPrior to this commit, both this branch (since a92e61b3) and the merge\nresult failed `cargo check` with 22 errors. The user asked for cargo +\nbun validation against the merge resolution, so this commit fixes the\npreexisting structural breakage that the merge inherited, plus a few\nfollow-ups uncovered by the test suites.\n\nRust:\n- git/mod.rs: restore the develop-side mod.rs that declares\n `pub mod query` / `pub mod init` and re-exports the right names from\n each. The orphan query.rs / init.rs files were already on disk; only\n the mod entry was missing after a92e61b3 accidentally gutted it.\n- evolve/mod.rs: route `repo_root` through `git::query` (its new home),\n pull `FileEdit` from `shared_types`, re-export `Evolution` from\n `shared_types::Evolution` (types.rs only imports it, doesn't re-export\n it), and fix the `made_edit_or_build_check` typo that develop's PR\n #272 introduced (variable never defined; should be\n `made_edit || made_build_check`).\n- shared_types/git.rs: re-add `WatcherEvent` alongside the unused\n `GitState` slice type — `state/watcher.rs` still constructs it and\n needs the symbol back. Marked `GitState` `#[allow(dead_code)]` until\n the watcher migration finishes.\n- summarize/queue_summarizer.rs: `#[allow(dead_code)]` on the\n not-yet-wired worker scaffolding (a92e61b3 carryover).\n- commands/settings_io.rs: update an EvolutionLimits test fixture to\n include the new `max_token_budget` / `max_output_tokens` fields.\n\nFrontend (post-merge tweaks):\n- ipc/api.ts: drop the duplicate `devConfigs` entry the auto-merge\n produced (it appeared once near `settings` and again after\n `promptHistory`).\n- ipc/types.ts: regenerated via `cargo run --example specta_gen_ts` to\n drop duplicated `ConfigField` / `ConfigurableSchema` / `EnumVariant`\n / `FieldType` blocks the auto-merge dual-inserted.\n- viewmodel/git.ts + viewmodel.test.ts: switch the\n `git_state_changed` payload type from `GitState` (unused TS-side) to\n `WatcherEvent` (what the Rust watcher actually emits).\n- hooks/use-evolve.ts: drop the eager `mirrorChangeMapState(null)` at\n the top of `handleEvolve`. Line 109 already correctly avoids\n overwriting the change map for conversational responses; the eager\n clear contradicted that and broke develop's PR #243 test that\n exercises conversational follow-ups.\n- Tests (`use-evolve.test.ts`, `use-rollback.test.ts`,\n `prompt-input.test.tsx`, `system-defaults-cta.test.tsx`): swap the\n removed `setGitStatus` / `setEvolveState` / `setChangeMap` /\n `setSummaryAvailable` widget-store setters for the viewmodel mirror\n fns (`mirrorGitState`, `mirrorEvolveState`, `mirrorChangeMapState`).\n `summaryAvailable` no longer exists on the widget store; the\n related assertions are dropped.\n- Storybook snapshots: 30 stories were regenerated after the\n AI Models tab field split, the system-defaults icon swap, and the\n hunk-pill render going through `DiffLineStatsBadge`.\n\nValidation:\n- `cargo check`: clean\n- `cargo test`: 366 passed\n- `bun run test:unit`: 116 passed\n- `bun run test:storybook`: 165 passed\n- `bun run build` (tsc + vite): clean\n\nCo-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>",
"timestamp": "2026-06-03T12:11:50Z",
"author": {
"name": "Juan Pedro Bolívar Puente",
"email": "raskolnikov@gnu.org"
},
"committer": {
"name": "Juan Pedro Bolívar Puente",
"email": "raskolnikov@gnu.org"
}
}
},
"repository": {
"id": 1209959628,
"node_id": "R_kgDOSB6EzA",
"name": "nixmac",
"full_name": "darkmatter/nixmac",
"private": false,
"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/nixmac",
"description": "Home manager and nix-darwin that understands plain English",
"fork": false,
"url": "https://api.github.com/repos/darkmatter/nixmac",
"forks_url": "https://api.github.com/repos/darkmatter/nixmac/forks",
"keys_url": "https://api.github.com/repos/darkmatter/nixmac/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/darkmatter/nixmac/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/darkmatter/nixmac/teams",
"hooks_url": "https://api.github.com/repos/darkmatter/nixmac/hooks",
"issue_events_url": "https://api.github.com/repos/darkmatter/nixmac/issues/events{/number}",
"events_url": "https://api.github.com/repos/darkmatter/nixmac/events",
"assignees_url": "https://api.github.com/repos/darkmatter/nixmac/assignees{/user}",
"branches_url": "https://api.github.com/repos/darkmatter/nixmac/branches{/branch}",
"tags_url": "https://api.github.com/repos/darkmatter/nixmac/tags",
"blobs_url": "https://api.github.com/repos/darkmatter/nixmac/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/darkmatter/nixmac/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/darkmatter/nixmac/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/darkmatter/nixmac/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/darkmatter/nixmac/statuses/{sha}",
"languages_url": "https://api.github.com/repos/darkmatter/nixmac/languages",
"stargazers_url": "https://api.github.com/repos/darkmatter/nixmac/stargazers",
"contributors_url": "https://api.github.com/repos/darkmatter/nixmac/contributors",
"subscribers_url": "https://api.github.com/repos/darkmatter/nixmac/subscribers",
"subscription_url": "https://api.github.com/repos/darkmatter/nixmac/subscription",
"commits_url": "https://api.github.com/repos/darkmatter/nixmac/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/darkmatter/nixmac/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/darkmatter/nixmac/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/darkmatter/nixmac/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/darkmatter/nixmac/contents/{+path}",
"compare_url": "https://api.github.com/repos/darkmatter/nixmac/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/darkmatter/nixmac/merges",
"archive_url": "https://api.github.com/repos/darkmatter/nixmac/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/darkmatter/nixmac/downloads",
"issues_url": "https://api.github.com/repos/darkmatter/nixmac/issues{/number}",
"pulls_url": "https://api.github.com/repos/darkmatter/nixmac/pulls{/number}",
"milestones_url": "https://api.github.com/repos/darkmatter/nixmac/milestones{/number}",
"notifications_url": "https://api.github.com/repos/darkmatter/nixmac/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/darkmatter/nixmac/labels{/name}",
"releases_url": "https://api.github.com/repos/darkmatter/nixmac/releases{/id}",
"deployments_url": "https://api.github.com/repos/darkmatter/nixmac/deployments",
"created_at": "2026-04-14T00:37:13Z",
"updated_at": "2026-06-03T06:35:32Z",
"pushed_at": "2026-06-03T12:13:52Z",
"git_url": "git://github.com/darkmatter/nixmac.git",
"ssh_url": "git@github.com:darkmatter/nixmac.git",
"clone_url": "https://github.com/darkmatter/nixmac.git",
"svn_url": "https://github.com/darkmatter/nixmac",
"homepage": "https://nixmac.com",
"size": 679363,
"stargazers_count": 5,
"watchers_count": 5,
"language": "Rust",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 1,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 68,
"license": {
"key": "mit",
"name": "MIT License",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"has_pull_requests": true,
"pull_request_creation_policy": "all",
"topics": [
"home-manager",
"nix",
"nix-darwin",
"nix-flake",
"opencode"
],
"visibility": "public",
"forks": 1,
"open_issues": 68,
"watchers": 5,
"default_branch": "develop",
"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": "arximboldi",
"id": 4521138,
"node_id": "MDQ6VXNlcjQ1MjExMzg=",
"avatar_url": "https://avatars.githubusercontent.com/u/4521138?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/arximboldi",
"html_url": "https://github.com/arximboldi",
"followers_url": "https://api.github.com/users/arximboldi/followers",
"following_url": "https://api.github.com/users/arximboldi/following{/other_user}",
"gists_url": "https://api.github.com/users/arximboldi/gists{/gist_id}",
"starred_url": "https://api.github.com/users/arximboldi/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/arximboldi/subscriptions",
"organizations_url": "https://api.github.com/users/arximboldi/orgs",
"repos_url": "https://api.github.com/users/arximboldi/repos",
"events_url": "https://api.github.com/users/arximboldi/events{/privacy}",
"received_events_url": "https://api.github.com/users/arximboldi/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"installation": {
"id": 131074261,
"node_id": "MDIzOkludGVncmF0aW9uSW5zdGFsbGF0aW9uMTMxMDc0MjYx"
}
}