Darkmatter · github-bot stage: prod
preview@internal.darkmatter
Events received
75582
Ignored
75546
Jobs dispatched
36

Event 15394ed0…

← All events

Event

Delivery
15394ed0-6030-11f1-8e65-6faac2dd18f3
Event
pull_request
Action
ready_for_review
Received
2026-06-04T16:11:47.331Z
Signature
valid
Parsed
yes
Sender
czxtm
Repo
darkmatter/gitops
Status
ignored — unsupported_event

Headers

{
  "accept": "*/*",
  "accept-encoding": "gzip, br",
  "cf-connecting-ip": "140.82.115.43",
  "cf-ipcountry": "US",
  "cf-ray": "a06837249cafb560",
  "cf-visitor": "{\"scheme\":\"https\"}",
  "connection": "Keep-Alive",
  "content-length": "28830",
  "content-type": "application/json",
  "host": "github-bot.darkmatter.io",
  "user-agent": "GitHub-Hookshot/c3988e2",
  "x-forwarded-proto": "https",
  "x-github-delivery": "15394ed0-6030-11f1-8e65-6faac2dd18f3",
  "x-github-event": "pull_request",
  "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.43"
}

Payload

{
  "action": "ready_for_review",
  "number": 19,
  "pull_request": {
    "url": "https://api.github.com/repos/darkmatter/gitops/pulls/19",
    "id": 3803848403,
    "node_id": "PR_kwDOSjW5Zs7iuh7T",
    "html_url": "https://github.com/darkmatter/gitops/pull/19",
    "diff_url": "https://github.com/darkmatter/gitops/pull/19.diff",
    "patch_url": "https://github.com/darkmatter/gitops/pull/19.patch",
    "issue_url": "https://api.github.com/repos/darkmatter/gitops/issues/19",
    "number": 19,
    "state": "open",
    "locked": false,
    "title": "feat(tenderly-snap): deploy static dApp behind cloudflared tunnel",
    "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": "## What\n\nDeploys the Tenderly **\"Simulate Asset Changes\"** MetaMask snap demo dApp to the\nk3s cluster, reachable at **https://tenderly-snap.drkmttr.dev** through the\nin-cluster cloudflared tunnel.\n\nThe dApp is a static Gatsby site. The MetaMask snap itself is **not** bundled —\nthe site ships `SNAP_ORIGIN=npm:@tenderly/...` baked in at build time so\nMetaMask installs the snap from npm. The container image is built/pushed\nseparately from **`darkmatter/tenderly-snap`** to `ghcr.io/darkmatter/tenderly-snap`.\n\n## Changes\n\n| File | Change |\n|------|--------|\n| `apps/tenderly-snap.yaml` | New ArgoCD `Application` (app-of-apps), ns `tenderly-snap`, auto-sync + prune + `CreateNamespace`. |\n| `manifests/tenderly-snap/deployment.yaml` | `ghcr.io/darkmatter/tenderly-snap:latest`, containerPort 8000, `ghcr-pull` imagePullSecret, hardened securityContext (non-root uid 101, `readOnlyRootFilesystem`) + `emptyDir` mounts for nginx writable paths, readiness/liveness on `/`. 2 replicas, zero-downtime rollout. |\n| `manifests/tenderly-snap/service.yaml` | `NodePort` 30810 → 8000. |\n| `manifests/cloudflared/configmap.yaml` | Tunnel ingress rule for `tenderly-snap.drkmttr.dev` → `tenderly-snap.tenderly-snap.svc.cluster.local:8000`, placed **before** the `http_status:404` catch-all. |\n| `manifests/cloudflared/deployment.yaml` | Bump `config.darkmatter.io/reload` annotation. |\n\n## Why the cloudflared annotation bump\n\ncloudflared reads `--config` **only at startup** and does not hot-reload ingress\nrules ([CF docs](https://developers.cloudflare.com/cloudflare-one/networks/connectors/cloudflare-tunnel/do-more-with-tunnels/local-management/configuration-file/#update-a-configuration-file): *\"restart the service to load the new configuration\"*).\nA ConfigMap-only change would leave the new rule dormant. Bumping the existing\n`config.darkmatter.io/reload` pod annotation (the house pattern already used for\nthe auth-origin and homepage changes) makes ArgoCD roll the cloudflared pods on\nsync — no manual `kubectl rollout restart`, no new cluster dependency. The\n`maxUnavailable: 0` rollout keeps the tunnel up throughout.\n\n## Expected rollout sequence (first progress signal → done)\n\n1. **Merge this PR** → cloudflared rolls and the edge returns **502/503** for\n   `tenderly-snap.drkmttr.dev` (rule exists, no endpoints yet) instead of the\n   current **404** from the catch-all. ← first progress signal.\n2. `darkmatter/tenderly-snap` CI publishes the image. Pods sit in\n   **`ImagePullBackOff`** until the short-lived (~1h) `ghcr-pull` Secret is\n   provisioned via `bun run ghcr-pull:provision` (separate gitops PR).\n3. Once **image + secret** both exist → pods go Ready → host returns **200** and\n   the MetaMask snap-connect flow works.\n\n## Decisions / notes for review\n\n- **`:latest` + `imagePullPolicy: Always`** is a bootstrap convenience; the repo\n  convention (see cloudflared) is \"never latest\". Pinning to an immutable\n  tag/digest once CI publishes versioned tags is filed as a follow-up.\n- **`NodePort`** per the original plan — cloudflared actually reaches the service\n  via its ClusterIP DNS name (a NodePort Service has one too), so the NodePort is\n  only for direct/debug access. Can be tightened to `ClusterIP` if undesired.\n- Validated locally with the same `kubeconform -strict` command CI runs\n  (31/31 valid) and parsed the embedded cloudflared `config.yaml` to confirm the\n  new rule is well-formed and correctly ordered before the catch-all.\n- Branched from a clean `origin/main` worktree; unrelated in-flight authentik\n  working-tree changes in the operator's checkout are **not** included here.\n\n## Not in this PR (tracked separately)\n\n- `darkmatter/tenderly-snap` source repo: Dockerfile (`nginxinc/nginx-unprivileged`,\n  listen :8000, SPA fallback) + GHA build/push workflow, and confirming the exact\n  npm snap package name baked into `SNAP_ORIGIN`.\n- The `ghcr-pull` Secret (provisioned + committed in its own short-TTL PR).\n\nDraft until the image and `ghcr-pull` Secret exist and the host is verified end-to-end.\n\n<!-- codesmith:footer -->\n---\n<a href=\"https://app.blacksmith.sh/darkmatter/codesmith/gitops/pr/19\"><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=1783176654&installation_id=137091173&pr_number=19&repository=darkmatter%2Fgitops&return_to=https%3A%2F%2Fgithub.com%2Fdarkmatter%2Fgitops%2Fpull%2F19&signature=48fdda9a5ee87b135e57bf8416bcbdf965cd93cca1970077ebc984acd0f2a7a5\"><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-04T14:50:51Z",
    "updated_at": "2026-06-04T16:11:45Z",
    "closed_at": null,
    "merged_at": null,
    "merge_commit_sha": "fb77acf7683094a7638e89821bba65696803eaf0",
    "assignees": [],
    "requested_reviewers": [],
    "requested_teams": [],
    "labels": [],
    "milestone": null,
    "draft": false,
    "commits_url": "https://api.github.com/repos/darkmatter/gitops/pulls/19/commits",
    "review_comments_url": "https://api.github.com/repos/darkmatter/gitops/pulls/19/comments",
    "review_comment_url": "https://api.github.com/repos/darkmatter/gitops/pulls/comments{/number}",
    "comments_url": "https://api.github.com/repos/darkmatter/gitops/issues/19/comments",
    "statuses_url": "https://api.github.com/repos/darkmatter/gitops/statuses/b9ec8126ce249c4a100c4fcfbd3949a92397b633",
    "head": {
      "label": "darkmatter:feat/tenderly-snap",
      "ref": "feat/tenderly-snap",
      "sha": "b9ec8126ce249c4a100c4fcfbd3949a92397b633",
      "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": 1245034854,
        "node_id": "R_kgDOSjW5Zg",
        "name": "gitops",
        "full_name": "darkmatter/gitops",
        "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/gitops",
        "description": "ArgoCD-managed Kubernetes workloads for the Dark Matter k3s control plane (app-of-apps target).",
        "fork": false,
        "url": "https://api.github.com/repos/darkmatter/gitops",
        "forks_url": "https://api.github.com/repos/darkmatter/gitops/forks",
        "keys_url": "https://api.github.com/repos/darkmatter/gitops/keys{/key_id}",
        "collaborators_url": "https://api.github.com/repos/darkmatter/gitops/collaborators{/collaborator}",
        "teams_url": "https://api.github.com/repos/darkmatter/gitops/teams",
        "hooks_url": "https://api.github.com/repos/darkmatter/gitops/hooks",
        "issue_events_url": "https://api.github.com/repos/darkmatter/gitops/issues/events{/number}",
        "events_url": "https://api.github.com/repos/darkmatter/gitops/events",
        "assignees_url": "https://api.github.com/repos/darkmatter/gitops/assignees{/user}",
        "branches_url": "https://api.github.com/repos/darkmatter/gitops/branches{/branch}",
        "tags_url": "https://api.github.com/repos/darkmatter/gitops/tags",
        "blobs_url": "https://api.github.com/repos/darkmatter/gitops/git/blobs{/sha}",
        "git_tags_url": "https://api.github.com/repos/darkmatter/gitops/git/tags{/sha}",
        "git_refs_url": "https://api.github.com/repos/darkmatter/gitops/git/refs{/sha}",
        "trees_url": "https://api.github.com/repos/darkmatter/gitops/git/trees{/sha}",
        "statuses_url": "https://api.github.com/repos/darkmatter/gitops/statuses/{sha}",
        "languages_url": "https://api.github.com/repos/darkmatter/gitops/languages",
        "stargazers_url": "https://api.github.com/repos/darkmatter/gitops/stargazers",
        "contributors_url": "https://api.github.com/repos/darkmatter/gitops/contributors",
        "subscribers_url": "https://api.github.com/repos/darkmatter/gitops/subscribers",
        "subscription_url": "https://api.github.com/repos/darkmatter/gitops/subscription",
        "commits_url": "https://api.github.com/repos/darkmatter/gitops/commits{/sha}",
        "git_commits_url": "https://api.github.com/repos/darkmatter/gitops/git/commits{/sha}",
        "comments_url": "https://api.github.com/repos/darkmatter/gitops/comments{/number}",
        "issue_comment_url": "https://api.github.com/repos/darkmatter/gitops/issues/comments{/number}",
        "contents_url": "https://api.github.com/repos/darkmatter/gitops/contents/{+path}",
        "compare_url": "https://api.github.com/repos/darkmatter/gitops/compare/{base}...{head}",
        "merges_url": "https://api.github.com/repos/darkmatter/gitops/merges",
        "archive_url": "https://api.github.com/repos/darkmatter/gitops/{archive_format}{/ref}",
        "downloads_url": "https://api.github.com/repos/darkmatter/gitops/downloads",
        "issues_url": "https://api.github.com/repos/darkmatter/gitops/issues{/number}",
        "pulls_url": "https://api.github.com/repos/darkmatter/gitops/pulls{/number}",
        "milestones_url": "https://api.github.com/repos/darkmatter/gitops/milestones{/number}",
        "notifications_url": "https://api.github.com/repos/darkmatter/gitops/notifications{?since,all,participating}",
        "labels_url": "https://api.github.com/repos/darkmatter/gitops/labels{/name}",
        "releases_url": "https://api.github.com/repos/darkmatter/gitops/releases{/id}",
        "deployments_url": "https://api.github.com/repos/darkmatter/gitops/deployments",
        "created_at": "2026-05-20T21:03:10Z",
        "updated_at": "2026-06-04T15:44:24Z",
        "pushed_at": "2026-06-04T15:44:17Z",
        "git_url": "git://github.com/darkmatter/gitops.git",
        "ssh_url": "git@github.com:darkmatter/gitops.git",
        "clone_url": "https://github.com/darkmatter/gitops.git",
        "svn_url": "https://github.com/darkmatter/gitops",
        "homepage": null,
        "size": 277,
        "stargazers_count": 0,
        "watchers_count": 0,
        "language": "Shell",
        "has_issues": true,
        "has_projects": true,
        "has_downloads": true,
        "has_wiki": true,
        "has_pages": false,
        "has_discussions": true,
        "forks_count": 0,
        "mirror_url": null,
        "archived": false,
        "disabled": false,
        "open_issues_count": 2,
        "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": 2,
        "watchers": 0,
        "default_branch": "main",
        "allow_squash_merge": true,
        "allow_merge_commit": true,
        "allow_rebase_merge": true,
        "allow_auto_merge": true,
        "delete_branch_on_merge": true,
        "allow_update_branch": true,
        "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": "b4cc178f1fa4a791b159b2e8912d01823bf174bc",
      "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": 1245034854,
        "node_id": "R_kgDOSjW5Zg",
        "name": "gitops",
        "full_name": "darkmatter/gitops",
        "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/gitops",
        "description": "ArgoCD-managed Kubernetes workloads for the Dark Matter k3s control plane (app-of-apps target).",
        "fork": false,
        "url": "https://api.github.com/repos/darkmatter/gitops",
        "forks_url": "https://api.github.com/repos/darkmatter/gitops/forks",
        "keys_url": "https://api.github.com/repos/darkmatter/gitops/keys{/key_id}",
        "collaborators_url": "https://api.github.com/repos/darkmatter/gitops/collaborators{/collaborator}",
        "teams_url": "https://api.github.com/repos/darkmatter/gitops/teams",
        "hooks_url": "https://api.github.com/repos/darkmatter/gitops/hooks",
        "issue_events_url": "https://api.github.com/repos/darkmatter/gitops/issues/events{/number}",
        "events_url": "https://api.github.com/repos/darkmatter/gitops/events",
        "assignees_url": "https://api.github.com/repos/darkmatter/gitops/assignees{/user}",
        "branches_url": "https://api.github.com/repos/darkmatter/gitops/branches{/branch}",
        "tags_url": "https://api.github.com/repos/darkmatter/gitops/tags",
        "blobs_url": "https://api.github.com/repos/darkmatter/gitops/git/blobs{/sha}",
        "git_tags_url": "https://api.github.com/repos/darkmatter/gitops/git/tags{/sha}",
        "git_refs_url": "https://api.github.com/repos/darkmatter/gitops/git/refs{/sha}",
        "trees_url": "https://api.github.com/repos/darkmatter/gitops/git/trees{/sha}",
        "statuses_url": "https://api.github.com/repos/darkmatter/gitops/statuses/{sha}",
        "languages_url": "https://api.github.com/repos/darkmatter/gitops/languages",
        "stargazers_url": "https://api.github.com/repos/darkmatter/gitops/stargazers",
        "contributors_url": "https://api.github.com/repos/darkmatter/gitops/contributors",
        "subscribers_url": "https://api.github.com/repos/darkmatter/gitops/subscribers",
        "subscription_url": "https://api.github.com/repos/darkmatter/gitops/subscription",
        "commits_url": "https://api.github.com/repos/darkmatter/gitops/commits{/sha}",
        "git_commits_url": "https://api.github.com/repos/darkmatter/gitops/git/commits{/sha}",
        "comments_url": "https://api.github.com/repos/darkmatter/gitops/comments{/number}",
        "issue_comment_url": "https://api.github.com/repos/darkmatter/gitops/issues/comments{/number}",
        "contents_url": "https://api.github.com/repos/darkmatter/gitops/contents/{+path}",
        "compare_url": "https://api.github.com/repos/darkmatter/gitops/compare/{base}...{head}",
        "merges_url": "https://api.github.com/repos/darkmatter/gitops/merges",
        "archive_url": "https://api.github.com/repos/darkmatter/gitops/{archive_format}{/ref}",
        "downloads_url": "https://api.github.com/repos/darkmatter/gitops/downloads",
        "issues_url": "https://api.github.com/repos/darkmatter/gitops/issues{/number}",
        "pulls_url": "https://api.github.com/repos/darkmatter/gitops/pulls{/number}",
        "milestones_url": "https://api.github.com/repos/darkmatter/gitops/milestones{/number}",
        "notifications_url": "https://api.github.com/repos/darkmatter/gitops/notifications{?since,all,participating}",
        "labels_url": "https://api.github.com/repos/darkmatter/gitops/labels{/name}",
        "releases_url": "https://api.github.com/repos/darkmatter/gitops/releases{/id}",
        "deployments_url": "https://api.github.com/repos/darkmatter/gitops/deployments",
        "created_at": "2026-05-20T21:03:10Z",
        "updated_at": "2026-06-04T15:44:24Z",
        "pushed_at": "2026-06-04T15:44:17Z",
        "git_url": "git://github.com/darkmatter/gitops.git",
        "ssh_url": "git@github.com:darkmatter/gitops.git",
        "clone_url": "https://github.com/darkmatter/gitops.git",
        "svn_url": "https://github.com/darkmatter/gitops",
        "homepage": null,
        "size": 277,
        "stargazers_count": 0,
        "watchers_count": 0,
        "language": "Shell",
        "has_issues": true,
        "has_projects": true,
        "has_downloads": true,
        "has_wiki": true,
        "has_pages": false,
        "has_discussions": true,
        "forks_count": 0,
        "mirror_url": null,
        "archived": false,
        "disabled": false,
        "open_issues_count": 2,
        "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": 2,
        "watchers": 0,
        "default_branch": "main",
        "allow_squash_merge": true,
        "allow_merge_commit": true,
        "allow_rebase_merge": true,
        "allow_auto_merge": true,
        "delete_branch_on_merge": true,
        "allow_update_branch": true,
        "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/gitops/pulls/19"
      },
      "html": {
        "href": "https://github.com/darkmatter/gitops/pull/19"
      },
      "issue": {
        "href": "https://api.github.com/repos/darkmatter/gitops/issues/19"
      },
      "comments": {
        "href": "https://api.github.com/repos/darkmatter/gitops/issues/19/comments"
      },
      "review_comments": {
        "href": "https://api.github.com/repos/darkmatter/gitops/pulls/19/comments"
      },
      "review_comment": {
        "href": "https://api.github.com/repos/darkmatter/gitops/pulls/comments{/number}"
      },
      "commits": {
        "href": "https://api.github.com/repos/darkmatter/gitops/pulls/19/commits"
      },
      "statuses": {
        "href": "https://api.github.com/repos/darkmatter/gitops/statuses/b9ec8126ce249c4a100c4fcfbd3949a92397b633"
      }
    },
    "author_association": "MEMBER",
    "auto_merge": null,
    "assignee": null,
    "active_lock_reason": null,
    "merged": false,
    "mergeable": true,
    "rebaseable": true,
    "mergeable_state": "clean",
    "merged_by": null,
    "comments": 0,
    "review_comments": 0,
    "maintainer_can_modify": false,
    "commits": 1,
    "additions": 145,
    "deletions": 1,
    "changed_files": 5
  },
  "repository": {
    "id": 1245034854,
    "node_id": "R_kgDOSjW5Zg",
    "name": "gitops",
    "full_name": "darkmatter/gitops",
    "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/gitops",
    "description": "ArgoCD-managed Kubernetes workloads for the Dark Matter k3s control plane (app-of-apps target).",
    "fork": false,
    "url": "https://api.github.com/repos/darkmatter/gitops",
    "forks_url": "https://api.github.com/repos/darkmatter/gitops/forks",
    "keys_url": "https://api.github.com/repos/darkmatter/gitops/keys{/key_id}",
    "collaborators_url": "https://api.github.com/repos/darkmatter/gitops/collaborators{/collaborator}",
    "teams_url": "https://api.github.com/repos/darkmatter/gitops/teams",
    "hooks_url": "https://api.github.com/repos/darkmatter/gitops/hooks",
    "issue_events_url": "https://api.github.com/repos/darkmatter/gitops/issues/events{/number}",
    "events_url": "https://api.github.com/repos/darkmatter/gitops/events",
    "assignees_url": "https://api.github.com/repos/darkmatter/gitops/assignees{/user}",
    "branches_url": "https://api.github.com/repos/darkmatter/gitops/branches{/branch}",
    "tags_url": "https://api.github.com/repos/darkmatter/gitops/tags",
    "blobs_url": "https://api.github.com/repos/darkmatter/gitops/git/blobs{/sha}",
    "git_tags_url": "https://api.github.com/repos/darkmatter/gitops/git/tags{/sha}",
    "git_refs_url": "https://api.github.com/repos/darkmatter/gitops/git/refs{/sha}",
    "trees_url": "https://api.github.com/repos/darkmatter/gitops/git/trees{/sha}",
    "statuses_url": "https://api.github.com/repos/darkmatter/gitops/statuses/{sha}",
    "languages_url": "https://api.github.com/repos/darkmatter/gitops/languages",
    "stargazers_url": "https://api.github.com/repos/darkmatter/gitops/stargazers",
    "contributors_url": "https://api.github.com/repos/darkmatter/gitops/contributors",
    "subscribers_url": "https://api.github.com/repos/darkmatter/gitops/subscribers",
    "subscription_url": "https://api.github.com/repos/darkmatter/gitops/subscription",
    "commits_url": "https://api.github.com/repos/darkmatter/gitops/commits{/sha}",
    "git_commits_url": "https://api.github.com/repos/darkmatter/gitops/git/commits{/sha}",
    "comments_url": "https://api.github.com/repos/darkmatter/gitops/comments{/number}",
    "issue_comment_url": "https://api.github.com/repos/darkmatter/gitops/issues/comments{/number}",
    "contents_url": "https://api.github.com/repos/darkmatter/gitops/contents/{+path}",
    "compare_url": "https://api.github.com/repos/darkmatter/gitops/compare/{base}...{head}",
    "merges_url": "https://api.github.com/repos/darkmatter/gitops/merges",
    "archive_url": "https://api.github.com/repos/darkmatter/gitops/{archive_format}{/ref}",
    "downloads_url": "https://api.github.com/repos/darkmatter/gitops/downloads",
    "issues_url": "https://api.github.com/repos/darkmatter/gitops/issues{/number}",
    "pulls_url": "https://api.github.com/repos/darkmatter/gitops/pulls{/number}",
    "milestones_url": "https://api.github.com/repos/darkmatter/gitops/milestones{/number}",
    "notifications_url": "https://api.github.com/repos/darkmatter/gitops/notifications{?since,all,participating}",
    "labels_url": "https://api.github.com/repos/darkmatter/gitops/labels{/name}",
    "releases_url": "https://api.github.com/repos/darkmatter/gitops/releases{/id}",
    "deployments_url": "https://api.github.com/repos/darkmatter/gitops/deployments",
    "created_at": "2026-05-20T21:03:10Z",
    "updated_at": "2026-06-04T15:44:24Z",
    "pushed_at": "2026-06-04T15:44:17Z",
    "git_url": "git://github.com/darkmatter/gitops.git",
    "ssh_url": "git@github.com:darkmatter/gitops.git",
    "clone_url": "https://github.com/darkmatter/gitops.git",
    "svn_url": "https://github.com/darkmatter/gitops",
    "homepage": null,
    "size": 277,
    "stargazers_count": 0,
    "watchers_count": 0,
    "language": "Shell",
    "has_issues": true,
    "has_projects": true,
    "has_downloads": true,
    "has_wiki": true,
    "has_pages": false,
    "has_discussions": true,
    "forks_count": 0,
    "mirror_url": null,
    "archived": false,
    "disabled": false,
    "open_issues_count": 2,
    "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": 2,
    "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"
  }
}