Skip to content

Commit 11f700d

Browse files
authored
Merge pull request #1473 from github/openapi-update-1f976ac6bca394025a07ee19b24a3ee9ca2f01312ac4b1d80151ffc4a6d8c113
Update OpenAPI 3.0 Descriptions
2 parents ef7723e + 3afcb82 commit 11f700d

24 files changed

Lines changed: 2772 additions & 15 deletions

descriptions/api.github.com/api.github.com.json

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7047,6 +7047,11 @@
70477047
"description": "Whether organization members can fork private organization repositories.",
70487048
"default": false
70497049
},
7050+
"web_commit_signoff_required": {
7051+
"type": "boolean",
7052+
"description": "Whether contributors to organization repositories are required to sign off on commits they make through GitHub's web interface.",
7053+
"default": false
7054+
},
70507055
"blog": {
70517056
"type": "string",
70527057
"example": "\"http://github.blog\""
@@ -19067,6 +19072,11 @@
1906719072
"type": "boolean",
1906819073
"description": "Either `true` to allow private forks, or `false` to prevent private forks.",
1906919074
"default": false
19075+
},
19076+
"web_commit_signoff_required": {
19077+
"type": "boolean",
19078+
"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.",
19079+
"default": false
1907019080
}
1907119081
}
1907219082
},
@@ -60107,6 +60117,11 @@
6010760117
"description": "Whether to allow forking this repo",
6010860118
"type": "boolean"
6010960119
},
60120+
"web_commit_signoff_required": {
60121+
"description": "Whether to require contributors to sign off on web-based commits",
60122+
"default": false,
60123+
"type": "boolean"
60124+
},
6011060125
"subscribers_count": {
6011160126
"type": "integer"
6011260127
},
@@ -65050,6 +65065,11 @@
6505065065
"description": "Whether to allow forking this repo",
6505165066
"type": "boolean"
6505265067
},
65068+
"web_commit_signoff_required": {
65069+
"description": "Whether to require contributors to sign off on web-based commits",
65070+
"default": false,
65071+
"type": "boolean"
65072+
},
6505365073
"subscribers_count": {
6505465074
"type": "integer"
6505565075
},
@@ -65519,6 +65539,10 @@
6551965539
},
6552065540
"allow_forking": {
6552165541
"type": "boolean"
65542+
},
65543+
"web_commit_signoff_required": {
65544+
"type": "boolean",
65545+
"example": false
6552265546
}
6552365547
},
6552465548
"required": [
@@ -65929,6 +65953,10 @@
6592965953
"example": false,
6593065954
"nullable": true
6593165955
},
65956+
"web_commit_signoff_required": {
65957+
"type": "boolean",
65958+
"example": false
65959+
},
6593265960
"updated_at": {
6593365961
"type": "string",
6593465962
"format": "date-time"
@@ -67686,6 +67714,10 @@
6768667714
},
6768767715
"allow_forking": {
6768867716
"type": "boolean"
67717+
},
67718+
"web_commit_signoff_required": {
67719+
"type": "boolean",
67720+
"example": false
6768967721
}
6769067722
},
6769167723
"required": [
@@ -69037,6 +69069,12 @@
6903769069
"type": "boolean",
6903869070
"example": false
6903969071
},
69072+
"web_commit_signoff_required": {
69073+
"description": "Whether to require contributors to sign off on web-based commits",
69074+
"default": false,
69075+
"type": "boolean",
69076+
"example": false
69077+
},
6904069078
"subscribers_count": {
6904169079
"type": "integer"
6904269080
},
@@ -69849,6 +69887,10 @@
6984969887
"type": "boolean",
6985069888
"example": true
6985169889
},
69890+
"web_commit_signoff_required": {
69891+
"type": "boolean",
69892+
"example": false
69893+
},
6985269894
"subscribers_count": {
6985369895
"type": "integer",
6985469896
"example": 42
@@ -80625,6 +80667,9 @@
8062580667
},
8062680668
"is_template": {
8062780669
"type": "boolean"
80670+
},
80671+
"web_commit_signoff_required": {
80672+
"type": "boolean"
8062880673
}
8062980674
},
8063080675
"required": [
@@ -81199,6 +81244,9 @@
8119981244
},
8120081245
"allow_forking": {
8120181246
"type": "boolean"
81247+
},
81248+
"web_commit_signoff_required": {
81249+
"type": "boolean"
8120281250
}
8120381251
},
8120481252
"required": [
@@ -83989,6 +84037,10 @@
8398984037
},
8399084038
"is_template": {
8399184039
"type": "boolean"
84040+
},
84041+
"web_commit_signoff_required": {
84042+
"type": "boolean",
84043+
"example": false
8399284044
}
8399384045
},
8399484046
"required": [
@@ -90123,6 +90175,7 @@
9012390175
"members_can_create_public_pages": true,
9012490176
"members_can_create_private_pages": true,
9012590177
"members_can_fork_private_repositories": false,
90178+
"web_commit_signoff_required": false,
9012690179
"updated_at": "2014-03-03T18:58:10Z"
9012790180
}
9012890181
},
@@ -94557,6 +94610,7 @@
9455794610
"delete_branch_on_merge": true,
9455894611
"allow_merge_commit": true,
9455994612
"allow_forking": true,
94613+
"web_commit_signoff_required": false,
9456094614
"subscribers_count": 42,
9456194615
"network_count": 0,
9456294616
"organization": {

descriptions/api.github.com/api.github.com.yaml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4918,6 +4918,12 @@ paths:
49184918
description: Whether organization members can fork private organization
49194919
repositories.
49204920
default: false
4921+
web_commit_signoff_required:
4922+
type: boolean
4923+
description: Whether contributors to organization repositories are
4924+
required to sign off on commits they make through GitHub's web
4925+
interface.
4926+
default: false
49214927
blog:
49224928
type: string
49234929
example: '"http://github.blog"'
@@ -13635,6 +13641,12 @@ paths:
1363513641
description: Either `true` to allow private forks, or `false` to
1363613642
prevent private forks.
1363713643
default: false
13644+
web_commit_signoff_required:
13645+
type: boolean
13646+
description: Either `true` to require contributors to sign off on
13647+
web-based commits, or `false` to not require contributors to sign
13648+
off on web-based commits.
13649+
default: false
1363813650
examples:
1363913651
default:
1364013652
value:
@@ -43319,6 +43331,10 @@ components:
4331943331
allow_forking:
4332043332
description: Whether to allow forking this repo
4332143333
type: boolean
43334+
web_commit_signoff_required:
43335+
description: Whether to require contributors to sign off on web-based commits
43336+
default: false
43337+
type: boolean
4332243338
subscribers_count:
4332343339
type: integer
4332443340
network_count:
@@ -47198,6 +47214,10 @@ components:
4719847214
allow_forking:
4719947215
description: Whether to allow forking this repo
4720047216
type: boolean
47217+
web_commit_signoff_required:
47218+
description: Whether to require contributors to sign off on web-based commits
47219+
default: false
47220+
type: boolean
4720147221
subscribers_count:
4720247222
type: integer
4720347223
network_count:
@@ -47561,6 +47581,9 @@ components:
4756147581
example: 0
4756247582
allow_forking:
4756347583
type: boolean
47584+
web_commit_signoff_required:
47585+
type: boolean
47586+
example: false
4756447587
required:
4756547588
- archive_url
4756647589
- assignees_url
@@ -47881,6 +47904,9 @@ components:
4788147904
type: boolean
4788247905
example: false
4788347906
nullable: true
47907+
web_commit_signoff_required:
47908+
type: boolean
47909+
example: false
4788447910
updated_at:
4788547911
type: string
4788647912
format: date-time
@@ -49262,6 +49288,9 @@ components:
4926249288
example: 0
4926349289
allow_forking:
4926449290
type: boolean
49291+
web_commit_signoff_required:
49292+
type: boolean
49293+
example: false
4926549294
required:
4926649295
- archive_url
4926749296
- assignees_url
@@ -50338,6 +50367,11 @@ components:
5033850367
default: false
5033950368
type: boolean
5034050369
example: false
50370+
web_commit_signoff_required:
50371+
description: Whether to require contributors to sign off on web-based commits
50372+
default: false
50373+
type: boolean
50374+
example: false
5034150375
subscribers_count:
5034250376
type: integer
5034350377
network_count:
@@ -50984,6 +51018,9 @@ components:
5098451018
allow_forking:
5098551019
type: boolean
5098651020
example: true
51021+
web_commit_signoff_required:
51022+
type: boolean
51023+
example: false
5098751024
subscribers_count:
5098851025
type: integer
5098951026
example: 42
@@ -59107,6 +59144,8 @@ components:
5910759144
type: boolean
5910859145
is_template:
5910959146
type: boolean
59147+
web_commit_signoff_required:
59148+
type: boolean
5911059149
required:
5911159150
- archive_url
5911259151
- assignees_url
@@ -59540,6 +59579,8 @@ components:
5954059579
format: date-time
5954159580
allow_forking:
5954259581
type: boolean
59582+
web_commit_signoff_required:
59583+
type: boolean
5954359584
required:
5954459585
- archive_url
5954559586
- assignees_url
@@ -61601,6 +61642,9 @@ components:
6160161642
type: boolean
6160261643
is_template:
6160361644
type: boolean
61645+
web_commit_signoff_required:
61646+
type: boolean
61647+
example: false
6160461648
required:
6160561649
- archive_url
6160661650
- assignees_url
@@ -67108,6 +67152,7 @@ components:
6710867152
members_can_create_public_pages: true
6710967153
members_can_create_private_pages: true
6711067154
members_can_fork_private_repositories: false
67155+
web_commit_signoff_required: false
6711167156
updated_at: '2014-03-03T18:58:10Z'
6711267157
org-actions-cache-usage-by-repo:
6711367158
value:
@@ -71097,6 +71142,7 @@ components:
7109771142
delete_branch_on_merge: true
7109871143
allow_merge_commit: true
7109971144
allow_forking: true
71145+
web_commit_signoff_required: false
7110071146
subscribers_count: 42
7110171147
network_count: 0
7110271148
organization:

0 commit comments

Comments
 (0)