|
| 1 | +{ |
| 2 | + "github_users": [ |
| 3 | + { |
| 4 | + "id": "10000001", |
| 5 | + "login": "agent-bot", |
| 6 | + "name": "Agent Bot", |
| 7 | + "email": "agent@example.com", |
| 8 | + "type": "Bot", |
| 9 | + "site_admin": false, |
| 10 | + "created_at": "2024-01-10T09:00:00" |
| 11 | + }, |
| 12 | + { |
| 13 | + "id": "10000002", |
| 14 | + "login": "alice", |
| 15 | + "name": "Alice Maintainer", |
| 16 | + "email": "alice@example.com", |
| 17 | + "type": "User", |
| 18 | + "site_admin": true, |
| 19 | + "created_at": "2023-06-01T12:00:00" |
| 20 | + }, |
| 21 | + { |
| 22 | + "id": "10000003", |
| 23 | + "login": "bob", |
| 24 | + "name": "Bob Contributor", |
| 25 | + "email": "bob@example.com", |
| 26 | + "type": "User", |
| 27 | + "site_admin": false, |
| 28 | + "created_at": "2023-07-15T12:00:00" |
| 29 | + }, |
| 30 | + { |
| 31 | + "id": "10000004", |
| 32 | + "login": "carol", |
| 33 | + "name": "Carol Reviewer", |
| 34 | + "email": "carol@example.com", |
| 35 | + "type": "User", |
| 36 | + "site_admin": false, |
| 37 | + "created_at": "2023-08-22T12:00:00" |
| 38 | + } |
| 39 | + ], |
| 40 | + "github_repositories": [ |
| 41 | + { |
| 42 | + "id": "20000001", |
| 43 | + "owner_id": "10000002", |
| 44 | + "name": "widgets", |
| 45 | + "full_name": "acme/widgets", |
| 46 | + "description": "Reference widgets library", |
| 47 | + "private": false, |
| 48 | + "default_branch": "main", |
| 49 | + "created_at": "2024-01-15T10:00:00" |
| 50 | + } |
| 51 | + ], |
| 52 | + "github_labels": [ |
| 53 | + { |
| 54 | + "id": "30000001", |
| 55 | + "repository_id": "20000001", |
| 56 | + "name": "bug", |
| 57 | + "color": "d73a4a", |
| 58 | + "description": "Something isn't working", |
| 59 | + "is_default": true |
| 60 | + }, |
| 61 | + { |
| 62 | + "id": "30000002", |
| 63 | + "repository_id": "20000001", |
| 64 | + "name": "enhancement", |
| 65 | + "color": "a2eeef", |
| 66 | + "description": "New feature or request", |
| 67 | + "is_default": true |
| 68 | + }, |
| 69 | + { |
| 70 | + "id": "30000003", |
| 71 | + "repository_id": "20000001", |
| 72 | + "name": "documentation", |
| 73 | + "color": "0075ca", |
| 74 | + "description": "Improvements or additions to documentation", |
| 75 | + "is_default": true |
| 76 | + }, |
| 77 | + { |
| 78 | + "id": "30000004", |
| 79 | + "repository_id": "20000001", |
| 80 | + "name": "good first issue", |
| 81 | + "color": "7057ff", |
| 82 | + "description": "Good for newcomers", |
| 83 | + "is_default": true |
| 84 | + }, |
| 85 | + { |
| 86 | + "id": "30000005", |
| 87 | + "repository_id": "20000001", |
| 88 | + "name": "needs-triage", |
| 89 | + "color": "ededed", |
| 90 | + "description": "Awaiting maintainer triage", |
| 91 | + "is_default": false |
| 92 | + } |
| 93 | + ], |
| 94 | + "github_issues": [ |
| 95 | + { |
| 96 | + "id": "40000001", |
| 97 | + "repository_id": "20000001", |
| 98 | + "number": 1, |
| 99 | + "title": "Widget factory panics on empty input", |
| 100 | + "body": "Calling `build()` with no components raises an unhandled exception.", |
| 101 | + "state": "open", |
| 102 | + "user_id": "10000003", |
| 103 | + "locked": false, |
| 104 | + "comments_count": 1, |
| 105 | + "is_pull_request": false, |
| 106 | + "created_at": "2024-02-01T09:00:00", |
| 107 | + "updated_at": "2024-02-01T09:00:00" |
| 108 | + }, |
| 109 | + { |
| 110 | + "id": "40000002", |
| 111 | + "repository_id": "20000001", |
| 112 | + "number": 2, |
| 113 | + "title": "Add async support to renderer", |
| 114 | + "body": "We need `render_async()` to integrate with asyncio servers.", |
| 115 | + "state": "open", |
| 116 | + "user_id": "10000004", |
| 117 | + "locked": false, |
| 118 | + "comments_count": 0, |
| 119 | + "is_pull_request": false, |
| 120 | + "created_at": "2024-02-05T11:30:00", |
| 121 | + "updated_at": "2024-02-05T11:30:00" |
| 122 | + }, |
| 123 | + { |
| 124 | + "id": "40000003", |
| 125 | + "repository_id": "20000001", |
| 126 | + "number": 3, |
| 127 | + "title": "Docs: document widget lifecycle", |
| 128 | + "body": "The README skips over lifecycle hooks.", |
| 129 | + "state": "closed", |
| 130 | + "state_reason": "completed", |
| 131 | + "user_id": "10000002", |
| 132 | + "locked": false, |
| 133 | + "comments_count": 0, |
| 134 | + "is_pull_request": false, |
| 135 | + "created_at": "2024-01-20T14:00:00", |
| 136 | + "updated_at": "2024-01-25T09:00:00", |
| 137 | + "closed_at": "2024-01-25T09:00:00" |
| 138 | + }, |
| 139 | + { |
| 140 | + "id": "40000004", |
| 141 | + "repository_id": "20000001", |
| 142 | + "number": 4, |
| 143 | + "title": "Fix widget factory panic", |
| 144 | + "body": "Closes #1. Adds guard for empty components list.", |
| 145 | + "state": "open", |
| 146 | + "user_id": "10000003", |
| 147 | + "locked": false, |
| 148 | + "comments_count": 0, |
| 149 | + "is_pull_request": true, |
| 150 | + "draft": false, |
| 151 | + "merged": false, |
| 152 | + "head_ref": "bob/fix-empty-input", |
| 153 | + "base_ref": "main", |
| 154 | + "head_sha": "aaaaaaaabbbbbbbbccccccccdddddddd11111111", |
| 155 | + "base_sha": "ffffffffeeeeeeeeddddddddcccccccc22222222", |
| 156 | + "created_at": "2024-02-10T15:00:00", |
| 157 | + "updated_at": "2024-02-10T15:00:00" |
| 158 | + }, |
| 159 | + { |
| 160 | + "id": "40000005", |
| 161 | + "repository_id": "20000001", |
| 162 | + "number": 5, |
| 163 | + "title": "Async renderer prototype", |
| 164 | + "body": "Initial pass at `render_async`. Draft — please review API shape.", |
| 165 | + "state": "open", |
| 166 | + "user_id": "10000004", |
| 167 | + "locked": false, |
| 168 | + "comments_count": 0, |
| 169 | + "is_pull_request": true, |
| 170 | + "draft": true, |
| 171 | + "merged": false, |
| 172 | + "head_ref": "carol/async-renderer", |
| 173 | + "base_ref": "main", |
| 174 | + "head_sha": "1111111122222222333333334444444455555555", |
| 175 | + "base_sha": "ffffffffeeeeeeeeddddddddcccccccc22222222", |
| 176 | + "created_at": "2024-02-12T10:00:00", |
| 177 | + "updated_at": "2024-02-12T10:00:00" |
| 178 | + } |
| 179 | + ], |
| 180 | + "github_issue_labels": [ |
| 181 | + {"issue_id": "40000001", "label_id": "30000001"}, |
| 182 | + {"issue_id": "40000001", "label_id": "30000005"}, |
| 183 | + {"issue_id": "40000002", "label_id": "30000002"}, |
| 184 | + {"issue_id": "40000003", "label_id": "30000003"} |
| 185 | + ], |
| 186 | + "github_issue_assignees": [ |
| 187 | + {"issue_id": "40000002", "user_id": "10000004"} |
| 188 | + ], |
| 189 | + "github_pull_request_reviewers": [ |
| 190 | + {"issue_id": "40000004", "user_id": "10000002"} |
| 191 | + ], |
| 192 | + "github_issue_comments": [ |
| 193 | + { |
| 194 | + "id": "50000001", |
| 195 | + "issue_id": "40000001", |
| 196 | + "user_id": "10000002", |
| 197 | + "body": "Reproduced on 0.4.1 — triaging.", |
| 198 | + "created_at": "2024-02-01T10:00:00", |
| 199 | + "updated_at": "2024-02-01T10:00:00" |
| 200 | + } |
| 201 | + ] |
| 202 | +} |
0 commit comments