Skip to content

Commit a5a5e94

Browse files
authored
Merge pull request #1474 from github/openapi-update-92a9624359520c163244edbf5ac1c44affe5242392847a0a4d037bb0bfa0528e
Update OpenAPI 3.1 Descriptions
2 parents 11f700d + 2ab1476 commit a5a5e94

24 files changed

Lines changed: 3142 additions & 15 deletions

descriptions-next/api.github.com/api.github.com.json

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7091,6 +7091,11 @@
70917091
"description": "Whether organization members can fork private organization repositories.",
70927092
"default": false
70937093
},
7094+
"web_commit_signoff_required": {
7095+
"type": "boolean",
7096+
"description": "Whether contributors to organization repositories are required to sign off on commits they make through GitHub's web interface.",
7097+
"default": false
7098+
},
70947099
"blog": {
70957100
"type": "string",
70967101
"examples": [
@@ -19181,6 +19186,11 @@
1918119186
"type": "boolean",
1918219187
"description": "Either `true` to allow private forks, or `false` to prevent private forks.",
1918319188
"default": false
19189+
},
19190+
"web_commit_signoff_required": {
19191+
"type": "boolean",
19192+
"description": "Either `true` to require contributors to sign off on web-based commits, or `false` to not require contributors to sign off on web-based commits.",
19193+
"default": false
1918419194
}
1918519195
}
1918619196
},
@@ -60745,6 +60755,11 @@
6074560755
"description": "Whether to allow forking this repo",
6074660756
"type": "boolean"
6074760757
},
60758+
"web_commit_signoff_required": {
60759+
"description": "Whether to require contributors to sign off on web-based commits",
60760+
"default": false,
60761+
"type": "boolean"
60762+
},
6074860763
"subscribers_count": {
6074960764
"type": "integer"
6075060765
},
@@ -65795,6 +65810,12 @@
6579565810
},
6579665811
"allow_forking": {
6579765812
"type": "boolean"
65813+
},
65814+
"web_commit_signoff_required": {
65815+
"type": "boolean",
65816+
"examples": [
65817+
false
65818+
]
6579865819
}
6579965820
},
6580065821
"required": [
@@ -66331,6 +66352,12 @@
6633166352
false
6633266353
]
6633366354
},
66355+
"web_commit_signoff_required": {
66356+
"type": "boolean",
66357+
"examples": [
66358+
false
66359+
]
66360+
},
6633466361
"updated_at": {
6633566362
"type": "string",
6633666363
"format": "date-time"
@@ -69616,6 +69643,14 @@
6961669643
false
6961769644
]
6961869645
},
69646+
"web_commit_signoff_required": {
69647+
"description": "Whether to require contributors to sign off on web-based commits",
69648+
"default": false,
69649+
"type": "boolean",
69650+
"examples": [
69651+
false
69652+
]
69653+
},
6961969654
"subscribers_count": {
6962069655
"type": "integer"
6962169656
},
@@ -70661,6 +70696,12 @@
7066170696
true
7066270697
]
7066370698
},
70699+
"web_commit_signoff_required": {
70700+
"type": "boolean",
70701+
"examples": [
70702+
false
70703+
]
70704+
},
7066470705
"subscribers_count": {
7066570706
"type": "integer",
7066670707
"examples": [
@@ -82770,6 +82811,9 @@
8277082811
},
8277182812
"is_template": {
8277282813
"type": "boolean"
82814+
},
82815+
"web_commit_signoff_required": {
82816+
"type": "boolean"
8277382817
}
8277482818
},
8277582819
"required": [
@@ -83363,6 +83407,9 @@
8336383407
},
8336483408
"allow_forking": {
8336583409
"type": "boolean"
83410+
},
83411+
"web_commit_signoff_required": {
83412+
"type": "boolean"
8336683413
}
8336783414
},
8336883415
"required": [
@@ -86535,6 +86582,12 @@
8653586582
},
8653686583
"is_template": {
8653786584
"type": "boolean"
86585+
},
86586+
"web_commit_signoff_required": {
86587+
"type": "boolean",
86588+
"examples": [
86589+
false
86590+
]
8653886591
}
8653986592
},
8654086593
"required": [
@@ -92893,6 +92946,7 @@
9289392946
"members_can_create_public_pages": true,
9289492947
"members_can_create_private_pages": true,
9289592948
"members_can_fork_private_repositories": false,
92949+
"web_commit_signoff_required": false,
9289692950
"updated_at": "2014-03-03T18:58:10Z"
9289792951
}
9289892952
},
@@ -97327,6 +97381,7 @@
9732797381
"delete_branch_on_merge": true,
9732897382
"allow_merge_commit": true,
9732997383
"allow_forking": true,
97384+
"web_commit_signoff_required": false,
9733097385
"subscribers_count": 42,
9733197386
"network_count": 0,
9733297387
"organization": {

descriptions-next/api.github.com/api.github.com.yaml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4938,6 +4938,12 @@ paths:
49384938
description: Whether organization members can fork private organization
49394939
repositories.
49404940
default: false
4941+
web_commit_signoff_required:
4942+
type: boolean
4943+
description: Whether contributors to organization repositories are
4944+
required to sign off on commits they make through GitHub's web
4945+
interface.
4946+
default: false
49414947
blog:
49424948
type: string
49434949
examples:
@@ -13689,6 +13695,12 @@ paths:
1368913695
description: Either `true` to allow private forks, or `false` to
1369013696
prevent private forks.
1369113697
default: false
13698+
web_commit_signoff_required:
13699+
type: boolean
13700+
description: Either `true` to require contributors to sign off on
13701+
web-based commits, or `false` to not require contributors to sign
13702+
off on web-based commits.
13703+
default: false
1369213704
examples:
1369313705
default:
1369413706
value:
@@ -43595,6 +43607,10 @@ components:
4359543607
allow_forking:
4359643608
description: Whether to allow forking this repo
4359743609
type: boolean
43610+
web_commit_signoff_required:
43611+
description: Whether to require contributors to sign off on web-based commits
43612+
default: false
43613+
type: boolean
4359843614
subscribers_count:
4359943615
type: integer
4360043616
network_count:
@@ -47304,6 +47320,10 @@ components:
4730447320
- 0
4730547321
allow_forking:
4730647322
type: boolean
47323+
web_commit_signoff_required:
47324+
type: boolean
47325+
examples:
47326+
- false
4730747327
required:
4730847328
- archive_url
4730947329
- assignees_url
@@ -47687,6 +47707,10 @@ components:
4768747707
- 'null'
4768847708
examples:
4768947709
- false
47710+
web_commit_signoff_required:
47711+
type: boolean
47712+
examples:
47713+
- false
4769047714
updated_at:
4769147715
type: string
4769247716
format: date-time
@@ -50075,6 +50099,12 @@ components:
5007550099
type: boolean
5007650100
examples:
5007750101
- false
50102+
web_commit_signoff_required:
50103+
description: Whether to require contributors to sign off on web-based commits
50104+
default: false
50105+
type: boolean
50106+
examples:
50107+
- false
5007850108
subscribers_count:
5007950109
type: integer
5008050110
network_count:
@@ -50833,6 +50863,10 @@ components:
5083350863
type: boolean
5083450864
examples:
5083550865
- true
50866+
web_commit_signoff_required:
50867+
type: boolean
50868+
examples:
50869+
- false
5083650870
subscribers_count:
5083750871
type: integer
5083850872
examples:
@@ -59348,6 +59382,8 @@ components:
5934859382
type: boolean
5934959383
is_template:
5935059384
type: boolean
59385+
web_commit_signoff_required:
59386+
type: boolean
5935159387
required:
5935259388
- archive_url
5935359389
- assignees_url
@@ -59789,6 +59825,8 @@ components:
5978959825
format: date-time
5979059826
allow_forking:
5979159827
type: boolean
59828+
web_commit_signoff_required:
59829+
type: boolean
5979259830
required:
5979359831
- archive_url
5979459832
- assignees_url
@@ -62016,6 +62054,10 @@ components:
6201662054
type: boolean
6201762055
is_template:
6201862056
type: boolean
62057+
web_commit_signoff_required:
62058+
type: boolean
62059+
examples:
62060+
- false
6201962061
required:
6202062062
- archive_url
6202162063
- assignees_url
@@ -67635,6 +67677,7 @@ components:
6763567677
members_can_create_public_pages: true
6763667678
members_can_create_private_pages: true
6763767679
members_can_fork_private_repositories: false
67680+
web_commit_signoff_required: false
6763867681
updated_at: '2014-03-03T18:58:10Z'
6763967682
org-actions-cache-usage-by-repo:
6764067683
value:
@@ -71624,6 +71667,7 @@ components:
7162471667
delete_branch_on_merge: true
7162571668
allow_merge_commit: true
7162671669
allow_forking: true
71670+
web_commit_signoff_required: false
7162771671
subscribers_count: 42
7162871672
network_count: 0
7162971673
organization:

0 commit comments

Comments
 (0)