Darkmatter · github-bot stage: prod
preview@internal.darkmatter
Events received
79363
Ignored
79326
Jobs dispatched
37

Event f50a9020…

← All events

Event

Delivery
f50a9020-6001-11f1-8319-af1d820e33d6
Event
pull_request_review_comment
Action
created
Received
2026-06-04T10:41:36.284Z
Signature
valid
Parsed
yes
Sender
Copilot
Repo
darkmatter/infra
Status
ignored — missing_command

Headers

{
  "accept": "*/*",
  "accept-encoding": "gzip, br",
  "cf-connecting-ip": "140.82.115.119",
  "cf-ipcountry": "US",
  "cf-ray": "a0665379babd165c",
  "cf-visitor": "{\"scheme\":\"https\"}",
  "connection": "Keep-Alive",
  "content-length": "33769",
  "content-type": "application/json",
  "host": "github-bot.darkmatter.io",
  "user-agent": "GitHub-Hookshot/933e3d3",
  "x-forwarded-proto": "https",
  "x-github-delivery": "f50a9020-6001-11f1-8319-af1d820e33d6",
  "x-github-event": "pull_request_review_comment",
  "x-github-hook-id": "628737947",
  "x-github-hook-installation-target-id": "3663660",
  "x-github-hook-installation-target-type": "integration",
  "x-real-ip": "140.82.115.119"
}

Payload

{
  "action": "created",
  "comment": {
    "url": "https://api.github.com/repos/darkmatter/infra/pulls/comments/3355364279",
    "pull_request_review_id": 4427089020,
    "id": 3355364279,
    "node_id": "PRRC_kwDOPq3Cd87H_su3",
    "diff_hunk": "@@ -0,0 +1,262 @@\n+# render-homepage-config — generate a gethomepage/homepage dashboard config as a\n+# Kubernetes ConfigMap, from the same service SSOT used by gatus and the docs\n+# launcher.\n+#\n+# Run with: `nix run .#render-homepage-config`\n+#\n+# This is a *third renderer* over the service single-source-of-truth:\n+#   * config/service-catalog.nix  (`nix eval .#serviceCatalog`) — curated launcher\n+#   * config/services.nix         (`nix eval .#services`)       — bun/container apps\n+#   * darkmatter/gitops           (apps/*.yaml + cloudflared)   — k3s workloads\n+#\n+# Output: a single ConfigMap (name `homepage`, namespace `homepage`) carrying the\n+# four homepage config files as data keys (services/settings/widgets/bookmarks.yaml).\n+# Written to $HOMEPAGE_CONFIGMAP_OUT (default: $GITOPS_DIR/manifests/homepage/\n+# configmap.yaml). A GitHub Actions workflow regenerates this and opens a PR\n+# against darkmatter/gitops; ArgoCD then deploys it to the cluster.\n+#\n+# Env:\n+#   INFRA_REPO_ROOT          — infra repo root (default: git toplevel)\n+#   GITOPS_DIR               — darkmatter/gitops checkout (default: sibling ../gitops)\n+#   HOMEPAGE_CONFIGMAP_OUT   — output path (default: $GITOPS_DIR/manifests/homepage/configmap.yaml)\n+{ pkgs, ... }:\n+let\n+  app = pkgs.writeShellApplication {\n+    name = \"render-homepage-config\";\n+    runtimeInputs = with pkgs; [ jq yq-go coreutils git nix ];\n+    # SC2016: jq/yq filters legitimately contain literal `$foo` inside single\n+    #         quotes — those are jq variables, not shell expansions.\n+    # SC2129: a few grouped redirects read clearer as individual appends.\n+    excludeShellChecks = [ \"SC2016\" \"SC2129\" ];\n+    text = ''\n+      set -euo pipefail\n+\n+      REPO_ROOT=\"''${INFRA_REPO_ROOT:-$(git rev-parse --show-toplevel)}\"\n+      GITOPS_DIR=\"''${GITOPS_DIR:-$REPO_ROOT/../gitops}\"\n+      OUT=\"''${HOMEPAGE_CONFIGMAP_OUT:-$GITOPS_DIR/manifests/homepage/configmap.yaml}\"\n+\n+      # ── Pull the service SSOT via flake outputs (don't re-parse Nix here) ──\n+      catalog_json=\"$(nix eval --json --no-warn-dirty \"$REPO_ROOT#serviceCatalog\")\"\n+      services_json=\"$(nix eval --json --no-warn-dirty \"$REPO_ROOT#services\")\"\n+\n+      # ── services.nix → catalog-shaped entries (group \"services\") ──────────\n+      # Mirrors render-inventory-index.nix so app deployments render alongside\n+      # the curated catalog under the \"Application services\" group.\n+      services_entries=\"$(echo \"$services_json\" | jq '\n+        to_entries\n+        | map({\n+            name: .key,\n+            title: .key,\n+            group: \"services\",\n+            url: (\"https://\" + .value.domain),\n+            description: (\"Application service (\" + (.value.runtime // \"bun\") + \") on \"\n+              + .value.machine + \"/\" + (.value.vm // .value.machine) + \".\")\n+          })\n+      ')\"\n+\n+      all_entries=\"$(jq -s '.[0].entries + .[1]' \\\n+        <(echo \"$catalog_json\") <(echo \"$services_entries\"))\"\n+\n+      # ── gitops discovery: ArgoCD apps (deduped by name) ───────────────────\n+      apps_json=\"[]\"\n+      if [ -d \"$GITOPS_DIR/apps\" ]; then\n+        apps_json=\"$(\n+          for f in \"$GITOPS_DIR\"/apps/*.yaml; do\n+            [ -e \"$f\" ] || continue\n+            # Collect chart/path across single- and multi-source Applications\n+            # into one array, then take the first non-null — avoids the YAML\n+            # splat multiplying a multi-source app into several rows.\n+            yq -o=json -I=0 '{\n+              \"name\": .metadata.name,\n+              \"ns\":   (.spec.destination.namespace // \"\"),\n+              \"chart\":([.spec.source.chart, ((.spec.sources // [])[] | .chart)] | map(select(. != null)) | .[0] // \"\"),\n+              \"path\": ([.spec.source.path,  ((.spec.sources // [])[] | .path)]  | map(select(. != null)) | .[0] // \"\")\n+            }' \"$f\"\n+          done | jq -s 'unique_by(.name) | map(select(.ns != \"homepage\"))'\n+        )\"\n+      fi\n+\n+      # ── gitops discovery: cloudflared ingress → public hostnames ──────────\n+      # The in-cluster tunnel's ingress list is the authoritative map of which\n+      # hostname reaches which Service. `.data.\"config.yaml\"` is itself a YAML\n+      # string, so we parse it a second time. Namespace is the 2nd dotted label\n+      # of the service FQDN (svc-name.<ns>.svc.cluster.local).\n+      ingress_json=\"[]\"\n+      cf=\"$GITOPS_DIR/manifests/cloudflared/configmap.yaml\"\n+      if [ -f \"$cf\" ]; then\n+        ingress_json=\"$(yq -r '.data.\"config.yaml\"' \"$cf\" \\\n+          | yq -o=json -I=0 '[.ingress[] | select(.hostname) | {\"host\": .hostname, \"svc\": .service}]' \\\n+          | jq 'map(. + {ns: ((.svc | capture(\"^https?://[^.]+[.](?<ns>[^.]+)[.]svc\") | .ns) // \"\")})')\"",
    "path": "nix/flake/apps/render-homepage-config.nix",
    "commit_id": "67fe63a0b6b9023a0bcf7463deef004ffbce4083",
    "original_commit_id": "67fe63a0b6b9023a0bcf7463deef004ffbce4083",
    "user": {
      "login": "Copilot",
      "id": 175728472,
      "node_id": "BOT_kgDOCnlnWA",
      "avatar_url": "https://avatars.githubusercontent.com/in/946600?v=4",
      "gravatar_id": "",
      "url": "https://api.github.com/users/Copilot",
      "html_url": "https://github.com/apps/copilot-pull-request-reviewer",
      "followers_url": "https://api.github.com/users/Copilot/followers",
      "following_url": "https://api.github.com/users/Copilot/following{/other_user}",
      "gists_url": "https://api.github.com/users/Copilot/gists{/gist_id}",
      "starred_url": "https://api.github.com/users/Copilot/starred{/owner}{/repo}",
      "subscriptions_url": "https://api.github.com/users/Copilot/subscriptions",
      "organizations_url": "https://api.github.com/users/Copilot/orgs",
      "repos_url": "https://api.github.com/users/Copilot/repos",
      "events_url": "https://api.github.com/users/Copilot/events{/privacy}",
      "received_events_url": "https://api.github.com/users/Copilot/received_events",
      "type": "Bot",
      "user_view_type": "public",
      "site_admin": false
    },
    "body": "This `jq capture(...)` will throw (and fail the generator/CI run) if any cloudflared ingress rule has a `.service` value that doesn’t match the expected `http(s)://svc-name.<ns>.svc...` pattern. Using `try … catch` keeps the generator robust to non-standard/edge ingress targets while still extracting namespaces when present.",
    "created_at": "2026-06-04T10:41:33Z",
    "updated_at": "2026-06-04T10:41:33Z",
    "html_url": "https://github.com/darkmatter/infra/pull/22#discussion_r3355364279",
    "pull_request_url": "https://api.github.com/repos/darkmatter/infra/pulls/22",
    "_links": {
      "self": {
        "href": "https://api.github.com/repos/darkmatter/infra/pulls/comments/3355364279"
      },
      "html": {
        "href": "https://github.com/darkmatter/infra/pull/22#discussion_r3355364279"
      },
      "pull_request": {
        "href": "https://api.github.com/repos/darkmatter/infra/pulls/22"
      }
    },
    "reactions": {
      "url": "https://api.github.com/repos/darkmatter/infra/pulls/comments/3355364279/reactions",
      "total_count": 0,
      "+1": 0,
      "-1": 0,
      "laugh": 0,
      "hooray": 0,
      "confused": 0,
      "heart": 0,
      "rocket": 0,
      "eyes": 0
    },
    "start_line": null,
    "original_start_line": null,
    "start_side": null,
    "line": 89,
    "original_line": 89,
    "side": "RIGHT",
    "author_association": "NONE",
    "original_position": 89,
    "position": 89,
    "subject_type": "line"
  },
  "pull_request": {
    "url": "https://api.github.com/repos/darkmatter/infra/pulls/22",
    "id": 3802141810,
    "node_id": "PR_kwDOPq3Cd87ioBRy",
    "html_url": "https://github.com/darkmatter/infra/pull/22",
    "diff_url": "https://github.com/darkmatter/infra/pull/22.diff",
    "patch_url": "https://github.com/darkmatter/infra/pull/22.patch",
    "issue_url": "https://api.github.com/repos/darkmatter/infra/issues/22",
    "number": 22,
    "state": "closed",
    "locked": false,
    "title": "feat: homepage config generator, dolt remotesapi, dm.sh PKI mirror, secret rekey",
    "user": {
      "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
    },
    "body": "## Summary\n\nBatch of independent infrastructure improvements that accumulated during development work.\n\n### Commits by layer\n\n| Commit | Layer | Description |\n|---|---|---|\n| `6f35013` | alchemy + nix | Homepage dashboard config generator + gitops PR workflow |\n| `0f54ce4` | alchemy | Code review fixes for homepage generator |\n| `dcef4c0` | nix/apps | Dolt remotesapi (port 50051) + auto-discover databases in backup script |\n| `72da090` | alchemy | `dm.sh` Cloudflare zone + `gist.dm.sh` short mirror for PKI/SOPS bootstrap |\n| `de5d813` | secrets | Rekey SOPS + update encrypted secrets (remove stale k3s age recipients) |\n| `5f0ccd4` | devshell | Export LINEAR_API_KEY from sops in .envrc |\n| `f04bebe` | docs | Latitude-raven k3s deployment plan |\n| `e860183` | docs | Refresh inventory index |\n\n### Key changes\n\n**Homepage config generator** — `nix run .#render-homepage-config` reads the service catalog + gitops checkout and emits a gethomepage ConfigMap. CI workflow opens signed PRs against darkmatter/gitops.\n\n**Dolt remotesapi** — Enables `bd dolt push/pull origin` for cross-device beads sync on port 50051. Backup script now auto-discovers databases instead of using a static list.\n\n**gist.dm.sh** — Short-mirror domain for PKI bootstrap (`/ca.pub`, `/.sops.yaml`) so operators can `curl gist.dm.sh/ca.pub` instead of the longer `pki.darkmatter.io/.well-known/ssh-ca.pub`.\n\n**Secret rekey** — Removed stale age recipients from k3s sops path, rekeyed secrets.\n\n### Affected layers\n\n- [x] `packages/alchemy/` — dm.sh zone, well-known worker, homepage generator workflow\n- [x] `nix/deploy/` — dolt service config\n- [x] `ops/secrets/` — rekeyed secrets\n- [x] `.envrc` — LINEAR_API_KEY export\n- [x] `docs/` — runbooks, plans\n\n### Pre-merge checklist\n\n- [ ] `bun run check` in packages/alchemy (TypeScript changes)\n- [ ] Verify dolt remotesapi port 50051 is not blocked by firewall\n- [ ] Deploy to sandbox before production for alchemy changes\n\n<!-- codesmith:footer -->\n---\n<a href=\"https://app.blacksmith.sh/darkmatter/codesmith/infra/pr/22\"><picture><source media=\"(prefers-color-scheme: dark)\" srcset=\"https://pr-comments-assets.blacksmith.sh/codesmith/view-with-codesmith-dark-v2.svg\"><source media=\"(prefers-color-scheme: light)\" srcset=\"https://pr-comments-assets.blacksmith.sh/codesmith/view-with-codesmith-light-v2.svg\"><img alt=\"View with Codesmith\" src=\"https://pr-comments-assets.blacksmith.sh/codesmith/view-with-codesmith-dark-v2.svg\"></picture></a> <a href=\"https://backend.blacksmith.sh/track/enable-autofix?expires=1783159247&installation_id=137091173&pr_number=22&repository=darkmatter%2Finfra&return_to=https%3A%2F%2Fgithub.com%2Fdarkmatter%2Finfra%2Fpull%2F22&signature=a83972b6c15c915e410dbe258d3a13309c3fbbd4a5434a2f47d27c7153673cd4\"><picture><source media=\"(prefers-color-scheme: dark)\" srcset=\"https://pr-comments-assets.blacksmith.sh/codesmith/autofix-with-codesmith-dark.svg\"><source media=\"(prefers-color-scheme: light)\" srcset=\"https://pr-comments-assets.blacksmith.sh/codesmith/autofix-with-codesmith-light.svg\"><img alt=\"Autofix with Codesmith\" src=\"https://pr-comments-assets.blacksmith.sh/codesmith/autofix-with-codesmith-dark.svg\"></picture></a>\n<sup>Need help on this PR? Tag <code>@codesmith</code> with what you need. Autofix is disabled.</sup>\n\n<!-- codesmith:autofix:disabled -->\n<!-- /codesmith:footer -->",
    "created_at": "2026-06-04T10:00:43Z",
    "updated_at": "2026-06-04T10:41:33Z",
    "closed_at": "2026-06-04T10:41:05Z",
    "merged_at": "2026-06-04T10:41:05Z",
    "merge_commit_sha": "bf33c61a15abbb1afe4f6c25ebca77e31a04fe63",
    "assignees": [],
    "requested_reviewers": [],
    "requested_teams": [],
    "labels": [],
    "milestone": null,
    "draft": false,
    "commits_url": "https://api.github.com/repos/darkmatter/infra/pulls/22/commits",
    "review_comments_url": "https://api.github.com/repos/darkmatter/infra/pulls/22/comments",
    "review_comment_url": "https://api.github.com/repos/darkmatter/infra/pulls/comments{/number}",
    "comments_url": "https://api.github.com/repos/darkmatter/infra/issues/22/comments",
    "statuses_url": "https://api.github.com/repos/darkmatter/infra/statuses/67fe63a0b6b9023a0bcf7463deef004ffbce4083",
    "head": {
      "label": "darkmatter:feat/homepage-config-generator",
      "ref": "feat/homepage-config-generator",
      "sha": "67fe63a0b6b9023a0bcf7463deef004ffbce4083",
      "user": {
        "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
      },
      "repo": {
        "id": 1051574903,
        "node_id": "R_kgDOPq3Cdw",
        "name": "infra",
        "full_name": "darkmatter/infra",
        "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/infra",
        "description": "Versioned infra repo",
        "fork": false,
        "url": "https://api.github.com/repos/darkmatter/infra",
        "forks_url": "https://api.github.com/repos/darkmatter/infra/forks",
        "keys_url": "https://api.github.com/repos/darkmatter/infra/keys{/key_id}",
        "collaborators_url": "https://api.github.com/repos/darkmatter/infra/collaborators{/collaborator}",
        "teams_url": "https://api.github.com/repos/darkmatter/infra/teams",
        "hooks_url": "https://api.github.com/repos/darkmatter/infra/hooks",
        "issue_events_url": "https://api.github.com/repos/darkmatter/infra/issues/events{/number}",
        "events_url": "https://api.github.com/repos/darkmatter/infra/events",
        "assignees_url": "https://api.github.com/repos/darkmatter/infra/assignees{/user}",
        "branches_url": "https://api.github.com/repos/darkmatter/infra/branches{/branch}",
        "tags_url": "https://api.github.com/repos/darkmatter/infra/tags",
        "blobs_url": "https://api.github.com/repos/darkmatter/infra/git/blobs{/sha}",
        "git_tags_url": "https://api.github.com/repos/darkmatter/infra/git/tags{/sha}",
        "git_refs_url": "https://api.github.com/repos/darkmatter/infra/git/refs{/sha}",
        "trees_url": "https://api.github.com/repos/darkmatter/infra/git/trees{/sha}",
        "statuses_url": "https://api.github.com/repos/darkmatter/infra/statuses/{sha}",
        "languages_url": "https://api.github.com/repos/darkmatter/infra/languages",
        "stargazers_url": "https://api.github.com/repos/darkmatter/infra/stargazers",
        "contributors_url": "https://api.github.com/repos/darkmatter/infra/contributors",
        "subscribers_url": "https://api.github.com/repos/darkmatter/infra/subscribers",
        "subscription_url": "https://api.github.com/repos/darkmatter/infra/subscription",
        "commits_url": "https://api.github.com/repos/darkmatter/infra/commits{/sha}",
        "git_commits_url": "https://api.github.com/repos/darkmatter/infra/git/commits{/sha}",
        "comments_url": "https://api.github.com/repos/darkmatter/infra/comments{/number}",
        "issue_comment_url": "https://api.github.com/repos/darkmatter/infra/issues/comments{/number}",
        "contents_url": "https://api.github.com/repos/darkmatter/infra/contents/{+path}",
        "compare_url": "https://api.github.com/repos/darkmatter/infra/compare/{base}...{head}",
        "merges_url": "https://api.github.com/repos/darkmatter/infra/merges",
        "archive_url": "https://api.github.com/repos/darkmatter/infra/{archive_format}{/ref}",
        "downloads_url": "https://api.github.com/repos/darkmatter/infra/downloads",
        "issues_url": "https://api.github.com/repos/darkmatter/infra/issues{/number}",
        "pulls_url": "https://api.github.com/repos/darkmatter/infra/pulls{/number}",
        "milestones_url": "https://api.github.com/repos/darkmatter/infra/milestones{/number}",
        "notifications_url": "https://api.github.com/repos/darkmatter/infra/notifications{?since,all,participating}",
        "labels_url": "https://api.github.com/repos/darkmatter/infra/labels{/name}",
        "releases_url": "https://api.github.com/repos/darkmatter/infra/releases{/id}",
        "deployments_url": "https://api.github.com/repos/darkmatter/infra/deployments",
        "created_at": "2025-09-06T09:28:59Z",
        "updated_at": "2026-06-04T10:41:09Z",
        "pushed_at": "2026-06-04T10:41:04Z",
        "git_url": "git://github.com/darkmatter/infra.git",
        "ssh_url": "git@github.com:darkmatter/infra.git",
        "clone_url": "https://github.com/darkmatter/infra.git",
        "svn_url": "https://github.com/darkmatter/infra",
        "homepage": null,
        "size": 59120,
        "stargazers_count": 0,
        "watchers_count": 0,
        "language": "Nix",
        "has_issues": true,
        "has_projects": true,
        "has_downloads": true,
        "has_wiki": true,
        "has_pages": true,
        "has_discussions": false,
        "forks_count": 0,
        "mirror_url": null,
        "archived": false,
        "disabled": false,
        "open_issues_count": 1,
        "license": null,
        "allow_forking": false,
        "is_template": false,
        "web_commit_signoff_required": false,
        "has_pull_requests": true,
        "pull_request_creation_policy": "all",
        "topics": [],
        "visibility": "private",
        "forks": 0,
        "open_issues": 1,
        "watchers": 0,
        "default_branch": "main",
        "allow_squash_merge": true,
        "allow_merge_commit": true,
        "allow_rebase_merge": true,
        "allow_auto_merge": false,
        "delete_branch_on_merge": false,
        "allow_update_branch": false,
        "use_squash_pr_title_as_default": false,
        "squash_merge_commit_message": "COMMIT_MESSAGES",
        "squash_merge_commit_title": "COMMIT_OR_PR_TITLE",
        "merge_commit_message": "PR_TITLE",
        "merge_commit_title": "MERGE_MESSAGE"
      }
    },
    "base": {
      "label": "darkmatter:main",
      "ref": "main",
      "sha": "1104ff0d042475b1295e5405790000ebccae33e5",
      "user": {
        "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
      },
      "repo": {
        "id": 1051574903,
        "node_id": "R_kgDOPq3Cdw",
        "name": "infra",
        "full_name": "darkmatter/infra",
        "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/infra",
        "description": "Versioned infra repo",
        "fork": false,
        "url": "https://api.github.com/repos/darkmatter/infra",
        "forks_url": "https://api.github.com/repos/darkmatter/infra/forks",
        "keys_url": "https://api.github.com/repos/darkmatter/infra/keys{/key_id}",
        "collaborators_url": "https://api.github.com/repos/darkmatter/infra/collaborators{/collaborator}",
        "teams_url": "https://api.github.com/repos/darkmatter/infra/teams",
        "hooks_url": "https://api.github.com/repos/darkmatter/infra/hooks",
        "issue_events_url": "https://api.github.com/repos/darkmatter/infra/issues/events{/number}",
        "events_url": "https://api.github.com/repos/darkmatter/infra/events",
        "assignees_url": "https://api.github.com/repos/darkmatter/infra/assignees{/user}",
        "branches_url": "https://api.github.com/repos/darkmatter/infra/branches{/branch}",
        "tags_url": "https://api.github.com/repos/darkmatter/infra/tags",
        "blobs_url": "https://api.github.com/repos/darkmatter/infra/git/blobs{/sha}",
        "git_tags_url": "https://api.github.com/repos/darkmatter/infra/git/tags{/sha}",
        "git_refs_url": "https://api.github.com/repos/darkmatter/infra/git/refs{/sha}",
        "trees_url": "https://api.github.com/repos/darkmatter/infra/git/trees{/sha}",
        "statuses_url": "https://api.github.com/repos/darkmatter/infra/statuses/{sha}",
        "languages_url": "https://api.github.com/repos/darkmatter/infra/languages",
        "stargazers_url": "https://api.github.com/repos/darkmatter/infra/stargazers",
        "contributors_url": "https://api.github.com/repos/darkmatter/infra/contributors",
        "subscribers_url": "https://api.github.com/repos/darkmatter/infra/subscribers",
        "subscription_url": "https://api.github.com/repos/darkmatter/infra/subscription",
        "commits_url": "https://api.github.com/repos/darkmatter/infra/commits{/sha}",
        "git_commits_url": "https://api.github.com/repos/darkmatter/infra/git/commits{/sha}",
        "comments_url": "https://api.github.com/repos/darkmatter/infra/comments{/number}",
        "issue_comment_url": "https://api.github.com/repos/darkmatter/infra/issues/comments{/number}",
        "contents_url": "https://api.github.com/repos/darkmatter/infra/contents/{+path}",
        "compare_url": "https://api.github.com/repos/darkmatter/infra/compare/{base}...{head}",
        "merges_url": "https://api.github.com/repos/darkmatter/infra/merges",
        "archive_url": "https://api.github.com/repos/darkmatter/infra/{archive_format}{/ref}",
        "downloads_url": "https://api.github.com/repos/darkmatter/infra/downloads",
        "issues_url": "https://api.github.com/repos/darkmatter/infra/issues{/number}",
        "pulls_url": "https://api.github.com/repos/darkmatter/infra/pulls{/number}",
        "milestones_url": "https://api.github.com/repos/darkmatter/infra/milestones{/number}",
        "notifications_url": "https://api.github.com/repos/darkmatter/infra/notifications{?since,all,participating}",
        "labels_url": "https://api.github.com/repos/darkmatter/infra/labels{/name}",
        "releases_url": "https://api.github.com/repos/darkmatter/infra/releases{/id}",
        "deployments_url": "https://api.github.com/repos/darkmatter/infra/deployments",
        "created_at": "2025-09-06T09:28:59Z",
        "updated_at": "2026-06-04T10:41:09Z",
        "pushed_at": "2026-06-04T10:41:04Z",
        "git_url": "git://github.com/darkmatter/infra.git",
        "ssh_url": "git@github.com:darkmatter/infra.git",
        "clone_url": "https://github.com/darkmatter/infra.git",
        "svn_url": "https://github.com/darkmatter/infra",
        "homepage": null,
        "size": 59120,
        "stargazers_count": 0,
        "watchers_count": 0,
        "language": "Nix",
        "has_issues": true,
        "has_projects": true,
        "has_downloads": true,
        "has_wiki": true,
        "has_pages": true,
        "has_discussions": false,
        "forks_count": 0,
        "mirror_url": null,
        "archived": false,
        "disabled": false,
        "open_issues_count": 1,
        "license": null,
        "allow_forking": false,
        "is_template": false,
        "web_commit_signoff_required": false,
        "has_pull_requests": true,
        "pull_request_creation_policy": "all",
        "topics": [],
        "visibility": "private",
        "forks": 0,
        "open_issues": 1,
        "watchers": 0,
        "default_branch": "main",
        "allow_squash_merge": true,
        "allow_merge_commit": true,
        "allow_rebase_merge": true,
        "allow_auto_merge": false,
        "delete_branch_on_merge": false,
        "allow_update_branch": false,
        "use_squash_pr_title_as_default": false,
        "squash_merge_commit_message": "COMMIT_MESSAGES",
        "squash_merge_commit_title": "COMMIT_OR_PR_TITLE",
        "merge_commit_message": "PR_TITLE",
        "merge_commit_title": "MERGE_MESSAGE"
      }
    },
    "_links": {
      "self": {
        "href": "https://api.github.com/repos/darkmatter/infra/pulls/22"
      },
      "html": {
        "href": "https://github.com/darkmatter/infra/pull/22"
      },
      "issue": {
        "href": "https://api.github.com/repos/darkmatter/infra/issues/22"
      },
      "comments": {
        "href": "https://api.github.com/repos/darkmatter/infra/issues/22/comments"
      },
      "review_comments": {
        "href": "https://api.github.com/repos/darkmatter/infra/pulls/22/comments"
      },
      "review_comment": {
        "href": "https://api.github.com/repos/darkmatter/infra/pulls/comments{/number}"
      },
      "commits": {
        "href": "https://api.github.com/repos/darkmatter/infra/pulls/22/commits"
      },
      "statuses": {
        "href": "https://api.github.com/repos/darkmatter/infra/statuses/67fe63a0b6b9023a0bcf7463deef004ffbce4083"
      }
    },
    "author_association": "MEMBER",
    "auto_merge": null,
    "assignee": null,
    "active_lock_reason": null
  },
  "repository": {
    "id": 1051574903,
    "node_id": "R_kgDOPq3Cdw",
    "name": "infra",
    "full_name": "darkmatter/infra",
    "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/infra",
    "description": "Versioned infra repo",
    "fork": false,
    "url": "https://api.github.com/repos/darkmatter/infra",
    "forks_url": "https://api.github.com/repos/darkmatter/infra/forks",
    "keys_url": "https://api.github.com/repos/darkmatter/infra/keys{/key_id}",
    "collaborators_url": "https://api.github.com/repos/darkmatter/infra/collaborators{/collaborator}",
    "teams_url": "https://api.github.com/repos/darkmatter/infra/teams",
    "hooks_url": "https://api.github.com/repos/darkmatter/infra/hooks",
    "issue_events_url": "https://api.github.com/repos/darkmatter/infra/issues/events{/number}",
    "events_url": "https://api.github.com/repos/darkmatter/infra/events",
    "assignees_url": "https://api.github.com/repos/darkmatter/infra/assignees{/user}",
    "branches_url": "https://api.github.com/repos/darkmatter/infra/branches{/branch}",
    "tags_url": "https://api.github.com/repos/darkmatter/infra/tags",
    "blobs_url": "https://api.github.com/repos/darkmatter/infra/git/blobs{/sha}",
    "git_tags_url": "https://api.github.com/repos/darkmatter/infra/git/tags{/sha}",
    "git_refs_url": "https://api.github.com/repos/darkmatter/infra/git/refs{/sha}",
    "trees_url": "https://api.github.com/repos/darkmatter/infra/git/trees{/sha}",
    "statuses_url": "https://api.github.com/repos/darkmatter/infra/statuses/{sha}",
    "languages_url": "https://api.github.com/repos/darkmatter/infra/languages",
    "stargazers_url": "https://api.github.com/repos/darkmatter/infra/stargazers",
    "contributors_url": "https://api.github.com/repos/darkmatter/infra/contributors",
    "subscribers_url": "https://api.github.com/repos/darkmatter/infra/subscribers",
    "subscription_url": "https://api.github.com/repos/darkmatter/infra/subscription",
    "commits_url": "https://api.github.com/repos/darkmatter/infra/commits{/sha}",
    "git_commits_url": "https://api.github.com/repos/darkmatter/infra/git/commits{/sha}",
    "comments_url": "https://api.github.com/repos/darkmatter/infra/comments{/number}",
    "issue_comment_url": "https://api.github.com/repos/darkmatter/infra/issues/comments{/number}",
    "contents_url": "https://api.github.com/repos/darkmatter/infra/contents/{+path}",
    "compare_url": "https://api.github.com/repos/darkmatter/infra/compare/{base}...{head}",
    "merges_url": "https://api.github.com/repos/darkmatter/infra/merges",
    "archive_url": "https://api.github.com/repos/darkmatter/infra/{archive_format}{/ref}",
    "downloads_url": "https://api.github.com/repos/darkmatter/infra/downloads",
    "issues_url": "https://api.github.com/repos/darkmatter/infra/issues{/number}",
    "pulls_url": "https://api.github.com/repos/darkmatter/infra/pulls{/number}",
    "milestones_url": "https://api.github.com/repos/darkmatter/infra/milestones{/number}",
    "notifications_url": "https://api.github.com/repos/darkmatter/infra/notifications{?since,all,participating}",
    "labels_url": "https://api.github.com/repos/darkmatter/infra/labels{/name}",
    "releases_url": "https://api.github.com/repos/darkmatter/infra/releases{/id}",
    "deployments_url": "https://api.github.com/repos/darkmatter/infra/deployments",
    "created_at": "2025-09-06T09:28:59Z",
    "updated_at": "2026-06-04T10:41:09Z",
    "pushed_at": "2026-06-04T10:41:04Z",
    "git_url": "git://github.com/darkmatter/infra.git",
    "ssh_url": "git@github.com:darkmatter/infra.git",
    "clone_url": "https://github.com/darkmatter/infra.git",
    "svn_url": "https://github.com/darkmatter/infra",
    "homepage": null,
    "size": 59120,
    "stargazers_count": 0,
    "watchers_count": 0,
    "language": "Nix",
    "has_issues": true,
    "has_projects": true,
    "has_downloads": true,
    "has_wiki": true,
    "has_pages": true,
    "has_discussions": false,
    "forks_count": 0,
    "mirror_url": null,
    "archived": false,
    "disabled": false,
    "open_issues_count": 1,
    "license": null,
    "allow_forking": false,
    "is_template": false,
    "web_commit_signoff_required": false,
    "has_pull_requests": true,
    "pull_request_creation_policy": "all",
    "topics": [],
    "visibility": "private",
    "forks": 0,
    "open_issues": 1,
    "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": "Copilot",
    "id": 175728472,
    "node_id": "BOT_kgDOCnlnWA",
    "avatar_url": "https://avatars.githubusercontent.com/in/946600?v=4",
    "gravatar_id": "",
    "url": "https://api.github.com/users/Copilot",
    "html_url": "https://github.com/apps/copilot-pull-request-reviewer",
    "followers_url": "https://api.github.com/users/Copilot/followers",
    "following_url": "https://api.github.com/users/Copilot/following{/other_user}",
    "gists_url": "https://api.github.com/users/Copilot/gists{/gist_id}",
    "starred_url": "https://api.github.com/users/Copilot/starred{/owner}{/repo}",
    "subscriptions_url": "https://api.github.com/users/Copilot/subscriptions",
    "organizations_url": "https://api.github.com/users/Copilot/orgs",
    "repos_url": "https://api.github.com/users/Copilot/repos",
    "events_url": "https://api.github.com/users/Copilot/events{/privacy}",
    "received_events_url": "https://api.github.com/users/Copilot/received_events",
    "type": "Bot",
    "user_view_type": "public",
    "site_admin": false
  },
  "installation": {
    "id": 131074261,
    "node_id": "MDIzOkludGVncmF0aW9uSW5zdGFsbGF0aW9uMTMxMDc0MjYx"
  }
}