airbyte-source-github 1.7.1.dev202404071124__py3-none-any.whl → 1.7.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. {airbyte_source_github-1.7.1.dev202404071124.dist-info → airbyte_source_github-1.7.2.dist-info}/METADATA +2 -2
  2. airbyte_source_github-1.7.2.dist-info/RECORD +62 -0
  3. source_github/schemas/assignees.json +19 -0
  4. source_github/schemas/branches.json +17 -0
  5. source_github/schemas/collaborators.json +26 -0
  6. source_github/schemas/comments.json +29 -0
  7. source_github/schemas/commit_comments.json +15 -0
  8. source_github/schemas/commits.json +35 -0
  9. source_github/schemas/contributor_activity.json +32 -8
  10. source_github/schemas/deployments.json +19 -0
  11. source_github/schemas/events.json +17 -0
  12. source_github/schemas/issue_events.json +69 -4
  13. source_github/schemas/issue_labels.json +8 -0
  14. source_github/schemas/issue_milestones.json +17 -0
  15. source_github/schemas/issue_reactions.json +7 -0
  16. source_github/schemas/issue_timeline_events.json +197 -56
  17. source_github/schemas/issues.json +84 -0
  18. source_github/schemas/organizations.json +62 -0
  19. source_github/schemas/project_cards.json +14 -0
  20. source_github/schemas/project_columns.json +10 -0
  21. source_github/schemas/projects.json +14 -0
  22. source_github/schemas/projects_v2.json +23 -0
  23. source_github/schemas/pull_request_comment_reactions.json +7 -0
  24. source_github/schemas/pull_request_commits.json +33 -0
  25. source_github/schemas/pull_request_stats.json +24 -3
  26. source_github/schemas/pull_requests.json +60 -0
  27. source_github/schemas/releases.json +38 -0
  28. source_github/schemas/repositories.json +98 -0
  29. source_github/schemas/review_comments.json +34 -0
  30. source_github/schemas/reviews.json +18 -0
  31. source_github/schemas/stargazers.json +4 -0
  32. source_github/schemas/tags.json +8 -0
  33. source_github/schemas/team_members.json +20 -0
  34. source_github/schemas/team_memberships.json +6 -0
  35. source_github/schemas/teams.json +14 -0
  36. source_github/schemas/users.json +19 -0
  37. source_github/schemas/workflow_jobs.json +30 -0
  38. source_github/schemas/workflow_runs.json +136 -0
  39. source_github/schemas/workflows.json +11 -0
  40. airbyte_source_github-1.7.1.dev202404071124.dist-info/RECORD +0 -62
  41. {airbyte_source_github-1.7.1.dev202404071124.dist-info → airbyte_source_github-1.7.2.dist-info}/WHEEL +0 -0
  42. {airbyte_source_github-1.7.1.dev202404071124.dist-info → airbyte_source_github-1.7.2.dist-info}/entry_points.txt +0 -0
@@ -3,54 +3,71 @@
3
3
  "type": "object",
4
4
  "properties": {
5
5
  "id": {
6
+ "description": "ID of the workflow run.",
6
7
  "type": ["null", "integer"]
7
8
  },
8
9
  "name": {
10
+ "description": "Name of the workflow.",
9
11
  "type": ["null", "string"]
10
12
  },
11
13
  "node_id": {
14
+ "description": "Node ID of the workflow run.",
12
15
  "type": ["null", "string"]
13
16
  },
14
17
  "head_branch": {
18
+ "description": "The branch associated with the head commit.",
15
19
  "type": ["null", "string"]
16
20
  },
17
21
  "head_sha": {
22
+ "description": "SHA of the head commit.",
18
23
  "type": ["null", "string"]
19
24
  },
20
25
  "path": {
26
+ "description": "The path where the workflow file is located.",
21
27
  "type": ["null", "string"]
22
28
  },
23
29
  "display_title": {
30
+ "description": "Title to display for the workflow run.",
24
31
  "type": ["null", "string"]
25
32
  },
26
33
  "run_number": {
34
+ "description": "The unique number assigned to the workflow run.",
27
35
  "type": ["null", "integer"]
28
36
  },
29
37
  "event": {
38
+ "description": "The event that triggered the workflow run.",
30
39
  "type": ["null", "string"]
31
40
  },
32
41
  "status": {
42
+ "description": "The current status of the workflow run.",
33
43
  "type": ["null", "string"]
34
44
  },
35
45
  "conclusion": {
46
+ "description": "The outcome or result of the workflow run.",
36
47
  "type": ["null", "string"]
37
48
  },
38
49
  "workflow_id": {
50
+ "description": "ID of the workflow associated with the run.",
39
51
  "type": ["null", "integer"]
40
52
  },
41
53
  "check_suite_id": {
54
+ "description": "ID of the associated GitHub check suite.",
42
55
  "type": ["null", "integer"]
43
56
  },
44
57
  "check_suite_node_id": {
58
+ "description": "Node ID of the associated GitHub check suite.",
45
59
  "type": ["null", "string"]
46
60
  },
47
61
  "url": {
62
+ "description": "URL to access details of the workflow run.",
48
63
  "type": ["null", "string"]
49
64
  },
50
65
  "html_url": {
66
+ "description": "URL to view the workflow run on GitHub.",
51
67
  "type": ["null", "string"]
52
68
  },
53
69
  "pull_requests": {
70
+ "description": "List of all pull requests associated with the workflow run.",
54
71
  "type": "array",
55
72
  "items": {
56
73
  "type": ["null", "object"],
@@ -59,77 +76,99 @@
59
76
  }
60
77
  },
61
78
  "created_at": {
79
+ "description": "The timestamp when the workflow run was created.",
62
80
  "type": "string",
63
81
  "format": "date-time"
64
82
  },
65
83
  "updated_at": {
84
+ "description": "The timestamp when the workflow run was last updated.",
66
85
  "type": "string",
67
86
  "format": "date-time"
68
87
  },
69
88
  "run_attempt": {
89
+ "description": "Specifies the attempt number of the workflow run.",
70
90
  "type": ["null", "integer"]
71
91
  },
72
92
  "referenced_workflows": {
93
+ "description": "List of workflows referenced by the workflow runs",
73
94
  "type": "array",
74
95
  "items": {
75
96
  "type": "object",
76
97
  "properties": {
77
98
  "path": {
99
+ "description": "Path of the referenced workflow file",
78
100
  "type": "string"
79
101
  },
80
102
  "sha": {
103
+ "description": "SHA hash of the referenced workflow",
81
104
  "type": "string"
82
105
  },
83
106
  "ref": {
107
+ "description": "Type of reference to the workflow",
84
108
  "type": "string"
85
109
  }
86
110
  }
87
111
  }
88
112
  },
89
113
  "run_started_at": {
114
+ "description": "The timestamp when the workflow run started.",
90
115
  "type": "string",
91
116
  "format": "date-time"
92
117
  },
93
118
  "jobs_url": {
119
+ "description": "URL to access jobs associated with the workflow run.",
94
120
  "type": ["null", "string"]
95
121
  },
96
122
  "logs_url": {
123
+ "description": "URL to access logs generated by the workflow run.",
97
124
  "type": ["null", "string"]
98
125
  },
99
126
  "check_suite_url": {
127
+ "description": "URL to access the check suite details.",
100
128
  "type": ["null", "string"]
101
129
  },
102
130
  "artifacts_url": {
131
+ "description": "URL to access artifacts generated by the workflow run.",
103
132
  "type": ["null", "string"]
104
133
  },
105
134
  "cancel_url": {
135
+ "description": "URL to cancel the workflow run if supported.",
106
136
  "type": ["null", "string"]
107
137
  },
108
138
  "rerun_url": {
139
+ "description": "URL to rerun the workflow.",
109
140
  "type": ["null", "string"]
110
141
  },
111
142
  "previous_attempt_url": {
143
+ "description": "URL to access the previous attempt of the workflow run.",
112
144
  "type": ["null", "string"]
113
145
  },
114
146
  "workflow_url": {
147
+ "description": "URL to access details of the workflow.",
115
148
  "type": ["null", "string"]
116
149
  },
117
150
  "head_commit": {
151
+ "description": "Details about the commit associated with the workflow run.",
118
152
  "type": "object",
119
153
  "properties": {
120
154
  "id": {
155
+ "description": "ID of the head commit.",
121
156
  "type": ["null", "string"]
122
157
  },
123
158
  "tree_id": {
159
+ "description": "ID of the tree associated with the head commit.",
124
160
  "type": ["null", "string"]
125
161
  },
126
162
  "message": {
163
+ "description": "The commit message of the head commit.",
127
164
  "type": ["null", "string"]
128
165
  },
129
166
  "timestamp": {
167
+ "description": "Timestamp of the head commit.",
130
168
  "type": ["null", "string"]
131
169
  },
132
170
  "author": {
171
+ "description": "The author details of the head commit.",
133
172
  "type": "object",
134
173
  "properties": {
135
174
  "name": {
@@ -141,6 +180,7 @@
141
180
  }
142
181
  },
143
182
  "committer": {
183
+ "description": "The committer details of the head commit.",
144
184
  "type": "object",
145
185
  "properties": {
146
186
  "name": {
@@ -154,295 +194,391 @@
154
194
  }
155
195
  },
156
196
  "repository": {
197
+ "description": "Details about the repository where the workflow run is executed.",
157
198
  "type": "object",
158
199
  "properties": {
159
200
  "id": {
201
+ "description": "ID of the repository.",
160
202
  "type": ["null", "integer"]
161
203
  },
162
204
  "node_id": {
205
+ "description": "Node ID of the repository.",
163
206
  "type": ["null", "string"]
164
207
  },
165
208
  "name": {
209
+ "description": "Name of the repository.",
166
210
  "type": ["null", "string"]
167
211
  },
168
212
  "full_name": {
213
+ "description": "Full name of the repository.",
169
214
  "type": "string"
170
215
  },
171
216
  "private": {
217
+ "description": "Indicates if the repository is private.",
172
218
  "type": ["null", "boolean"]
173
219
  },
174
220
  "owner": {
221
+ "description": "The owner of the repository.",
175
222
  "$ref": "user.json"
176
223
  },
177
224
  "html_url": {
225
+ "description": "HTML URL of the repository.",
178
226
  "type": ["null", "string"]
179
227
  },
180
228
  "description": {
229
+ "description": "Description of the repository.",
181
230
  "type": ["null", "string"]
182
231
  },
183
232
  "fork": {
233
+ "description": "Indicates if the repository is a fork.",
184
234
  "type": ["null", "boolean"]
185
235
  },
186
236
  "url": {
237
+ "description": "URL of the repository.",
187
238
  "type": ["null", "string"]
188
239
  },
189
240
  "forks_url": {
241
+ "description": "URL to access forks of the repository.",
190
242
  "type": ["null", "string"]
191
243
  },
192
244
  "keys_url": {
245
+ "description": "URL to access keys of the repository.",
193
246
  "type": ["null", "string"]
194
247
  },
195
248
  "collaborators_url": {
249
+ "description": "URL to access collaborators of the repository.",
196
250
  "type": ["null", "string"]
197
251
  },
198
252
  "teams_url": {
253
+ "description": "URL to access teams in the repository.",
199
254
  "type": ["null", "string"]
200
255
  },
201
256
  "hooks_url": {
257
+ "description": "URL to access hooks in the repository.",
202
258
  "type": ["null", "string"]
203
259
  },
204
260
  "issue_events_url": {
261
+ "description": "URL to access issue events in the repository.",
205
262
  "type": ["null", "string"]
206
263
  },
207
264
  "events_url": {
265
+ "description": "URL to access events associated with the repository.",
208
266
  "type": ["null", "string"]
209
267
  },
210
268
  "assignees_url": {
269
+ "description": "URL to access assignees of the repository.",
211
270
  "type": ["null", "string"]
212
271
  },
213
272
  "branches_url": {
273
+ "description": "URL to access branches of the repository.",
214
274
  "type": ["null", "string"]
215
275
  },
216
276
  "tags_url": {
277
+ "description": "URL to access tags in the repository.",
217
278
  "type": ["null", "string"]
218
279
  },
219
280
  "blobs_url": {
281
+ "description": "URL to access blobs in the repository.",
220
282
  "type": ["null", "string"]
221
283
  },
222
284
  "git_tags_url": {
285
+ "description": "URL to access git tags in the repository.",
223
286
  "type": ["null", "string"]
224
287
  },
225
288
  "git_refs_url": {
289
+ "description": "URL to access git refs in the repository.",
226
290
  "type": ["null", "string"]
227
291
  },
228
292
  "trees_url": {
293
+ "description": "URL to access trees in the repository.",
229
294
  "type": ["null", "string"]
230
295
  },
231
296
  "statuses_url": {
297
+ "description": "URL to access commit statuses in the repository.",
232
298
  "type": ["null", "string"]
233
299
  },
234
300
  "languages_url": {
301
+ "description": "URL to access languages used in the repository.",
235
302
  "type": ["null", "string"]
236
303
  },
237
304
  "stargazers_url": {
305
+ "description": "URL to access stargazers of the repository.",
238
306
  "type": ["null", "string"]
239
307
  },
240
308
  "contributors_url": {
309
+ "description": "URL to access contributors of the repository.",
241
310
  "type": ["null", "string"]
242
311
  },
243
312
  "subscribers_url": {
313
+ "description": "URL to access subscribers of the repository.",
244
314
  "type": ["null", "string"]
245
315
  },
246
316
  "subscription_url": {
317
+ "description": "URL for subscription to the repository.",
247
318
  "type": ["null", "string"]
248
319
  },
249
320
  "commits_url": {
321
+ "description": "URL to access commits in the repository.",
250
322
  "type": ["null", "string"]
251
323
  },
252
324
  "git_commits_url": {
325
+ "description": "URL to access git commits in the repository.",
253
326
  "type": ["null", "string"]
254
327
  },
255
328
  "comments_url": {
329
+ "description": "URL to access comments in the repository.",
256
330
  "type": ["null", "string"]
257
331
  },
258
332
  "issue_comment_url": {
333
+ "description": "URL to access issue comments in the repository.",
259
334
  "type": ["null", "string"]
260
335
  },
261
336
  "contents_url": {
337
+ "description": "URL to access contents of the repository.",
262
338
  "type": ["null", "string"]
263
339
  },
264
340
  "compare_url": {
341
+ "description": "URL to compare the repository with another ref/commit.",
265
342
  "type": ["null", "string"]
266
343
  },
267
344
  "merges_url": {
345
+ "description": "URL to access merges in the repository.",
268
346
  "type": ["null", "string"]
269
347
  },
270
348
  "archive_url": {
349
+ "description": "URL to access the repository's archive.",
271
350
  "type": ["null", "string"]
272
351
  },
273
352
  "downloads_url": {
353
+ "description": "URL to access downloads in the repository.",
274
354
  "type": ["null", "string"]
275
355
  },
276
356
  "issues_url": {
357
+ "description": "URL to access issues in the repository.",
277
358
  "type": ["null", "string"]
278
359
  },
279
360
  "pulls_url": {
361
+ "description": "URL to access pulls in the repository.",
280
362
  "type": ["null", "string"]
281
363
  },
282
364
  "milestones_url": {
365
+ "description": "URL to access milestones in the repository.",
283
366
  "type": ["null", "string"]
284
367
  },
285
368
  "notifications_url": {
369
+ "description": "URL to access notifications in the repository.",
286
370
  "type": ["null", "string"]
287
371
  },
288
372
  "labels_url": {
373
+ "description": "URL to access labels in the repository.",
289
374
  "type": ["null", "string"]
290
375
  },
291
376
  "releases_url": {
377
+ "description": "URL to access releases in the repository.",
292
378
  "type": ["null", "string"]
293
379
  },
294
380
  "deployments_url": {
381
+ "description": "URL to access deployments of the repository.",
295
382
  "type": ["null", "string"]
296
383
  }
297
384
  }
298
385
  },
299
386
  "head_repository": {
387
+ "description": "Information about the repository where the workflow was triggered.",
300
388
  "type": ["null", "object"],
301
389
  "properties": {
302
390
  "id": {
391
+ "description": "ID of the repository.",
303
392
  "type": ["null", "integer"]
304
393
  },
305
394
  "node_id": {
395
+ "description": "Node ID of the repository.",
306
396
  "type": ["null", "string"]
307
397
  },
308
398
  "name": {
399
+ "description": "Name of the repository.",
309
400
  "type": ["null", "string"]
310
401
  },
311
402
  "full_name": {
403
+ "description": "Full name of the repository.",
312
404
  "type": ["null", "string"]
313
405
  },
314
406
  "private": {
407
+ "description": "Indicates if the repository is private.",
315
408
  "type": ["null", "boolean"]
316
409
  },
317
410
  "owner": {
411
+ "description": "The owner of the repository.",
318
412
  "$ref": "user.json"
319
413
  },
320
414
  "html_url": {
415
+ "description": "HTML URL of the repository.",
321
416
  "type": ["null", "string"]
322
417
  },
323
418
  "description": {
419
+ "description": "Description of the repository.",
324
420
  "type": ["null", "string"]
325
421
  },
326
422
  "fork": {
423
+ "description": "Indicates if the repository is a fork.",
327
424
  "type": ["null", "boolean"]
328
425
  },
329
426
  "url": {
427
+ "description": "URL of the repository.",
330
428
  "type": ["null", "string"]
331
429
  },
332
430
  "forks_url": {
431
+ "description": "URL to access forks of the repository.",
333
432
  "type": ["null", "string"]
334
433
  },
335
434
  "keys_url": {
435
+ "description": "URL to access keys of the repository.",
336
436
  "type": ["null", "string"]
337
437
  },
338
438
  "collaborators_url": {
439
+ "description": "URL to access collaborators of the repository.",
339
440
  "type": ["null", "string"]
340
441
  },
341
442
  "teams_url": {
443
+ "description": "URL to access teams in the repository.",
342
444
  "type": ["null", "string"]
343
445
  },
344
446
  "hooks_url": {
447
+ "description": "URL to access hooks in the repository.",
345
448
  "type": ["null", "string"]
346
449
  },
347
450
  "issue_events_url": {
451
+ "description": "URL to access issue events in the repository.",
348
452
  "type": ["null", "string"]
349
453
  },
350
454
  "events_url": {
455
+ "description": "URL to access events associated with the repository.",
351
456
  "type": ["null", "string"]
352
457
  },
353
458
  "assignees_url": {
459
+ "description": "URL to access assignees of the repository.",
354
460
  "type": ["null", "string"]
355
461
  },
356
462
  "branches_url": {
463
+ "description": "URL to access branches of the repository.",
357
464
  "type": ["null", "string"]
358
465
  },
359
466
  "tags_url": {
467
+ "description": "URL to access tags in the repository.",
360
468
  "type": ["null", "string"]
361
469
  },
362
470
  "blobs_url": {
471
+ "description": "URL to access blobs in the repository.",
363
472
  "type": ["null", "string"]
364
473
  },
365
474
  "git_tags_url": {
475
+ "description": "URL to access git tags in the repository.",
366
476
  "type": ["null", "string"]
367
477
  },
368
478
  "git_refs_url": {
479
+ "description": "URL to access git refs in the repository.",
369
480
  "type": ["null", "string"]
370
481
  },
371
482
  "trees_url": {
483
+ "description": "URL to access trees in the repository.",
372
484
  "type": ["null", "string"]
373
485
  },
374
486
  "statuses_url": {
487
+ "description": "URL to access commit statuses in the repository.",
375
488
  "type": ["null", "string"]
376
489
  },
377
490
  "languages_url": {
491
+ "description": "URL to access languages used in the repository.",
378
492
  "type": ["null", "string"]
379
493
  },
380
494
  "stargazers_url": {
495
+ "description": "URL to access stargazers of the repository.",
381
496
  "type": ["null", "string"]
382
497
  },
383
498
  "contributors_url": {
499
+ "description": "URL to access contributors of the repository.",
384
500
  "type": ["null", "string"]
385
501
  },
386
502
  "subscribers_url": {
503
+ "description": "URL to access subscribers of the repository.",
387
504
  "type": ["null", "string"]
388
505
  },
389
506
  "subscription_url": {
507
+ "description": "URL for subscription to the repository.",
390
508
  "type": ["null", "string"]
391
509
  },
392
510
  "commits_url": {
511
+ "description": "URL to access commits in the repository.",
393
512
  "type": ["null", "string"]
394
513
  },
395
514
  "git_commits_url": {
515
+ "description": "URL to access git commits in the repository.",
396
516
  "type": ["null", "string"]
397
517
  },
398
518
  "comments_url": {
519
+ "description": "URL to access comments in the repository.",
399
520
  "type": ["null", "string"]
400
521
  },
401
522
  "issue_comment_url": {
523
+ "description": "URL to access issue comments in the repository.",
402
524
  "type": ["null", "string"]
403
525
  },
404
526
  "contents_url": {
527
+ "description": "URL to access contents of the repository.",
405
528
  "type": ["null", "string"]
406
529
  },
407
530
  "compare_url": {
531
+ "description": "URL to compare the repository with another ref/commit.",
408
532
  "type": ["null", "string"]
409
533
  },
410
534
  "merges_url": {
535
+ "description": "URL to access merges in the repository.",
411
536
  "type": ["null", "string"]
412
537
  },
413
538
  "archive_url": {
539
+ "description": "URL to access the repository's archive.",
414
540
  "type": ["null", "string"]
415
541
  },
416
542
  "downloads_url": {
543
+ "description": "URL to access downloads in the repository.",
417
544
  "type": ["null", "string"]
418
545
  },
419
546
  "issues_url": {
547
+ "description": "URL to access issues in the repository.",
420
548
  "type": ["null", "string"]
421
549
  },
422
550
  "pulls_url": {
551
+ "description": "URL to access pulls in the repository.",
423
552
  "type": ["null", "string"]
424
553
  },
425
554
  "milestones_url": {
555
+ "description": "URL to access milestones in the repository.",
426
556
  "type": ["null", "string"]
427
557
  },
428
558
  "notifications_url": {
559
+ "description": "URL to access notifications in the repository.",
429
560
  "type": ["null", "string"]
430
561
  },
431
562
  "labels_url": {
563
+ "description": "URL to access labels in the repository.",
432
564
  "type": ["null", "string"]
433
565
  },
434
566
  "releases_url": {
567
+ "description": "URL to access releases in the repository.",
435
568
  "type": ["null", "string"]
436
569
  },
437
570
  "deployments_url": {
571
+ "description": "URL to access deployments of the repository.",
438
572
  "type": ["null", "string"]
439
573
  }
440
574
  }
441
575
  },
442
576
  "actor": {
577
+ "description": "The user or entity responsible for triggering the workflow run.",
443
578
  "$ref": "user.json"
444
579
  },
445
580
  "triggering_actor": {
581
+ "description": "The user or entity that triggered the workflow run.",
446
582
  "$ref": "user.json"
447
583
  }
448
584
  }
@@ -3,38 +3,49 @@
3
3
  "type": ["null", "object"],
4
4
  "properties": {
5
5
  "id": {
6
+ "description": "Unique identifier for the workflow",
6
7
  "type": "integer"
7
8
  },
8
9
  "node_id": {
10
+ "description": "Node ID of the workflow",
9
11
  "type": ["null", "string"]
10
12
  },
11
13
  "name": {
14
+ "description": "Name of the workflow",
12
15
  "type": ["null", "string"]
13
16
  },
14
17
  "path": {
18
+ "description": "Path to the workflow in the repository",
15
19
  "type": ["null", "string"]
16
20
  },
17
21
  "state": {
22
+ "description": "Current state of the workflow",
18
23
  "type": ["null", "string"]
19
24
  },
20
25
  "created_at": {
26
+ "description": "Date and time when the workflow was created",
21
27
  "type": "string",
22
28
  "format": "date-time"
23
29
  },
24
30
  "updated_at": {
31
+ "description": "Date and time when the workflow was last updated",
25
32
  "type": "string",
26
33
  "format": "date-time"
27
34
  },
28
35
  "url": {
36
+ "description": "URL to access detailed information about the workflow",
29
37
  "type": ["null", "string"]
30
38
  },
31
39
  "html_url": {
40
+ "description": "URL to view the workflow on GitHub's web interface",
32
41
  "type": ["null", "string"]
33
42
  },
34
43
  "badge_url": {
44
+ "description": "URL for the badge that represents the workflow status",
35
45
  "type": ["null", "string"]
36
46
  },
37
47
  "repository": {
48
+ "description": "Repository information associated with the workflow",
38
49
  "type": "string"
39
50
  }
40
51
  }