File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
1
## Unreleased
2
2
- Add ping a repository and org webhook. (@tmcgilchrist #263 )
3
+ - Handle "Bot" user type (@zoggy #270 )
3
4
4
5
## 4.4.1 (2022-01-26)
5
6
- Fix older versions of github can be co-installed with github-data (@dra27 #261 )
Original file line number Diff line number Diff line change @@ -112,6 +112,7 @@ type direction = [
112
112
type user_type = [
113
113
| User <json name="User">
114
114
| Org <json name="Organization">
115
+ | Bot <json name="Bot">
115
116
]
116
117
117
118
type org = {
@@ -1370,7 +1371,7 @@ type check_status = [
1370
1371
| Queued <json name="queued">
1371
1372
| In_progress <json name="in_progress">
1372
1373
| Completed <json name="completed">
1373
- ]
1374
+ ]
1374
1375
1375
1376
type check_conclusion = [
1376
1377
| Success <json name="success">
@@ -1379,7 +1380,7 @@ type check_conclusion = [
1379
1380
| Cancelled <json name="cancelled">
1380
1381
| Timed_out <json name="timed_out">
1381
1382
| Action_required <json name="action_required">
1382
- ]
1383
+ ]
1383
1384
1384
1385
type check_run_output = {
1385
1386
title: string nullable;
@@ -1470,7 +1471,7 @@ type check_run_annotations = check_run_annotation list
1470
1471
type check_suite_info = {
1471
1472
email: string;
1472
1473
name: string;
1473
- }
1474
+ }
1474
1475
1475
1476
type check_suite_head_commit = {
1476
1477
id: string;
@@ -1515,4 +1516,4 @@ type check_suite_preferences = {
1515
1516
preferences: auto_trigger_checks list;
1516
1517
respository: repository;
1517
1518
}
1518
-
1519
+
You can’t perform that action at this time.
0 commit comments