@octokit/openapi 7.2.0 → 7.5.0

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 (35) hide show
  1. package/generated/api.github.com.deref.json +9605 -6
  2. package/generated/api.github.com.json +405 -33
  3. package/generated/ghes-3.2-diff-to-api.github.com.deref.json +1 -1
  4. package/generated/ghes-3.2-diff-to-api.github.com.json +1 -1
  5. package/generated/ghes-3.2-diff-to-ghes-3.3.deref.json +119 -1
  6. package/generated/ghes-3.2-diff-to-ghes-3.3.json +111 -1
  7. package/generated/ghes-3.2.deref.json +348 -1
  8. package/generated/ghes-3.2.json +145 -10
  9. package/generated/ghes-3.3-anicca-diff-to-ghes-3.4.deref.json +16 -0
  10. package/generated/ghes-3.3-diff-to-ghes-3.4.deref.json +209 -1
  11. package/generated/ghes-3.3-diff-to-ghes-3.4.json +9 -1
  12. package/generated/ghes-3.3.deref.json +348 -3
  13. package/generated/ghes-3.3.json +145 -11
  14. package/generated/ghes-3.4-diff-to-ghes-3.5.deref.json +1 -1
  15. package/generated/ghes-3.4-diff-to-ghes-3.5.json +1 -1
  16. package/generated/ghes-3.4.deref.json +333 -3
  17. package/generated/ghes-3.4.json +146 -11
  18. package/generated/ghes-3.5-anicca-diff-to-ghes-3.6.deref.json +1548 -135
  19. package/generated/ghes-3.5-diff-to-api.github.com.deref.json +1 -1
  20. package/generated/ghes-3.5-diff-to-api.github.com.json +1 -1
  21. package/generated/ghes-3.5-diff-to-ghes-3.6.deref.json +53558 -37094
  22. package/generated/ghes-3.5-diff-to-ghes-3.6.json +8076 -3526
  23. package/generated/ghes-3.5.deref.json +427 -15
  24. package/generated/ghes-3.5.json +240 -23
  25. package/generated/ghes-3.6-anicca-diff-to-api.github.com.deref.json +88 -0
  26. package/generated/ghes-3.6-diff-to-api.github.com.deref.json +442 -1
  27. package/generated/ghes-3.6-diff-to-api.github.com.json +212 -1
  28. package/generated/ghes-3.6.deref.json +7923 -1
  29. package/generated/ghes-3.6.json +380 -10
  30. package/generated/github.ae-anicca-diff-to-api.github.com.deref.json +733 -3
  31. package/generated/github.ae-diff-to-api.github.com.deref.json +751 -1
  32. package/generated/github.ae-diff-to-api.github.com.json +152 -4
  33. package/generated/github.ae.deref.json +926 -1
  34. package/generated/github.ae.json +184 -10
  35. package/package.json +1 -1
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "openapi": "3.0.3",
3
3
  "info": {
4
- "version": "7.2.0",
4
+ "version": "7.5.0",
5
5
  "title": "GitHub's official OpenAPI spec + Octokit extension",
6
6
  "description": "OpenAPI specs from https://github.com/github/rest-api-description with the 'x-octokit' extension required by the Octokit SDKs",
7
7
  "license": {
@@ -10014,6 +10014,7 @@
10014
10014
  "parameters": [
10015
10015
  {
10016
10016
  "name": "organization_id",
10017
+ "description": "The unique identifier of the organization.",
10017
10018
  "in": "path",
10018
10019
  "required": true,
10019
10020
  "schema": {
@@ -10211,6 +10212,11 @@
10211
10212
  "description": "Whether organization members can fork private organization repositories.",
10212
10213
  "default": false
10213
10214
  },
10215
+ "web_commit_signoff_required": {
10216
+ "type": "boolean",
10217
+ "description": "Whether contributors to organization repositories are required to sign off on commits they make through GitHub's web interface.",
10218
+ "default": false
10219
+ },
10214
10220
  "blog": {
10215
10221
  "type": "string",
10216
10222
  "example": "\"http://github.blog\""
@@ -16033,6 +16039,40 @@
16033
16039
  "type": "boolean",
16034
16040
  "description": "Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message.",
16035
16041
  "default": false
16042
+ },
16043
+ "squash_merge_commit_title": {
16044
+ "type": "string",
16045
+ "enum": [
16046
+ "PR_TITLE",
16047
+ "COMMIT_OR_PR_TITLE"
16048
+ ],
16049
+ "description": "The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit)."
16050
+ },
16051
+ "squash_merge_commit_message": {
16052
+ "type": "string",
16053
+ "enum": [
16054
+ "PR_BODY",
16055
+ "COMMIT_MESSAGES",
16056
+ "BLANK"
16057
+ ],
16058
+ "description": "The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message."
16059
+ },
16060
+ "merge_commit_title": {
16061
+ "type": "string",
16062
+ "enum": [
16063
+ "PR_TITLE",
16064
+ "MERGE_MESSAGE"
16065
+ ],
16066
+ "description": "The default value for a merge commit title.\n\n- `PR_TITLE` - default to the pull request's title.\n- `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name)."
16067
+ },
16068
+ "merge_commit_message": {
16069
+ "type": "string",
16070
+ "enum": [
16071
+ "PR_BODY",
16072
+ "PR_TITLE",
16073
+ "BLANK"
16074
+ ],
16075
+ "description": "The default value for a merge commit message.\n\n- `PR_TITLE` - default to the pull request's title.\n- `PR_BODY` - default to the pull request's body.\n- `BLANK` - default to a blank commit message."
16036
16076
  }
16037
16077
  },
16038
16078
  "required": [
@@ -20226,6 +20266,40 @@
20226
20266
  "description": "Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message.",
20227
20267
  "default": false
20228
20268
  },
20269
+ "squash_merge_commit_title": {
20270
+ "type": "string",
20271
+ "enum": [
20272
+ "PR_TITLE",
20273
+ "COMMIT_OR_PR_TITLE"
20274
+ ],
20275
+ "description": "The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit)."
20276
+ },
20277
+ "squash_merge_commit_message": {
20278
+ "type": "string",
20279
+ "enum": [
20280
+ "PR_BODY",
20281
+ "COMMIT_MESSAGES",
20282
+ "BLANK"
20283
+ ],
20284
+ "description": "The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message."
20285
+ },
20286
+ "merge_commit_title": {
20287
+ "type": "string",
20288
+ "enum": [
20289
+ "PR_TITLE",
20290
+ "MERGE_MESSAGE"
20291
+ ],
20292
+ "description": "The default value for a merge commit title.\n\n- `PR_TITLE` - default to the pull request's title.\n- `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name)."
20293
+ },
20294
+ "merge_commit_message": {
20295
+ "type": "string",
20296
+ "enum": [
20297
+ "PR_BODY",
20298
+ "PR_TITLE",
20299
+ "BLANK"
20300
+ ],
20301
+ "description": "The default value for a merge commit message.\n\n- `PR_TITLE` - default to the pull request's title.\n- `PR_BODY` - default to the pull request's body.\n- `BLANK` - default to a blank commit message."
20302
+ },
20229
20303
  "archived": {
20230
20304
  "type": "boolean",
20231
20305
  "description": "`true` to archive this repository. **Note**: You cannot unarchive repositories through the API.",
@@ -20235,6 +20309,11 @@
20235
20309
  "type": "boolean",
20236
20310
  "description": "Either `true` to allow private forks, or `false` to prevent private forks.",
20237
20311
  "default": false
20312
+ },
20313
+ "web_commit_signoff_required": {
20314
+ "type": "boolean",
20315
+ "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.",
20316
+ "default": false
20238
20317
  }
20239
20318
  }
20240
20319
  },
@@ -20847,6 +20926,11 @@
20847
20926
  "description": "Whether to enable debug logging for the re-run."
20848
20927
  }
20849
20928
  }
20929
+ },
20930
+ "examples": {
20931
+ "default": {
20932
+ "value": null
20933
+ }
20850
20934
  }
20851
20935
  }
20852
20936
  }
@@ -22384,9 +22468,12 @@
22384
22468
  "content": {
22385
22469
  "application/json": {
22386
22470
  "schema": {
22387
- "type": "object",
22388
- "properties": {},
22389
- "additionalProperties": false
22471
+ "$ref": "#/components/schemas/empty-object"
22472
+ },
22473
+ "examples": {
22474
+ "default": {
22475
+ "value": null
22476
+ }
22390
22477
  }
22391
22478
  }
22392
22479
  }
@@ -22691,6 +22778,17 @@
22691
22778
  "state",
22692
22779
  "comment"
22693
22780
  ]
22781
+ },
22782
+ "examples": {
22783
+ "default": {
22784
+ "value": {
22785
+ "environment_ids": [
22786
+ 161171787
22787
+ ],
22788
+ "state": "approved",
22789
+ "comment": "Ship it!"
22790
+ }
22791
+ }
22694
22792
  }
22695
22793
  }
22696
22794
  }
@@ -22761,6 +22859,11 @@
22761
22859
  "description": "Whether to enable debug logging for the re-run."
22762
22860
  }
22763
22861
  }
22862
+ },
22863
+ "examples": {
22864
+ "default": {
22865
+ "value": null
22866
+ }
22764
22867
  }
22765
22868
  }
22766
22869
  }
@@ -22771,9 +22874,12 @@
22771
22874
  "content": {
22772
22875
  "application/json": {
22773
22876
  "schema": {
22774
- "type": "object",
22775
- "properties": {},
22776
- "additionalProperties": false
22877
+ "$ref": "#/components/schemas/empty-object"
22878
+ },
22879
+ "examples": {
22880
+ "default": {
22881
+ "value": null
22882
+ }
22777
22883
  }
22778
22884
  }
22779
22885
  }
@@ -22825,6 +22931,11 @@
22825
22931
  "description": "Whether to enable debug logging for the re-run."
22826
22932
  }
22827
22933
  }
22934
+ },
22935
+ "examples": {
22936
+ "default": {
22937
+ "value": null
22938
+ }
22828
22939
  }
22829
22940
  }
22830
22941
  }
@@ -23078,9 +23189,12 @@
23078
23189
  "content": {
23079
23190
  "application/json": {
23080
23191
  "schema": {
23081
- "type": "object",
23082
- "properties": {},
23083
- "additionalProperties": false
23192
+ "$ref": "#/components/schemas/empty-object"
23193
+ },
23194
+ "examples": {
23195
+ "default": {
23196
+ "value": null
23197
+ }
23084
23198
  }
23085
23199
  }
23086
23200
  }
@@ -51573,6 +51687,40 @@
51573
51687
  "type": "boolean",
51574
51688
  "example": false
51575
51689
  },
51690
+ "squash_merge_commit_title": {
51691
+ "type": "string",
51692
+ "enum": [
51693
+ "PR_TITLE",
51694
+ "COMMIT_OR_PR_TITLE"
51695
+ ],
51696
+ "description": "The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit)."
51697
+ },
51698
+ "squash_merge_commit_message": {
51699
+ "type": "string",
51700
+ "enum": [
51701
+ "PR_BODY",
51702
+ "COMMIT_MESSAGES",
51703
+ "BLANK"
51704
+ ],
51705
+ "description": "The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message."
51706
+ },
51707
+ "merge_commit_title": {
51708
+ "type": "string",
51709
+ "enum": [
51710
+ "PR_TITLE",
51711
+ "MERGE_MESSAGE"
51712
+ ],
51713
+ "description": "The default value for a merge commit title.\n\n- `PR_TITLE` - default to the pull request's title.\n- `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name)."
51714
+ },
51715
+ "merge_commit_message": {
51716
+ "type": "string",
51717
+ "enum": [
51718
+ "PR_BODY",
51719
+ "PR_TITLE",
51720
+ "BLANK"
51721
+ ],
51722
+ "description": "The default value for a merge commit message.\n\n- `PR_TITLE` - default to the pull request's title.\n- `PR_BODY` - default to the pull request's body.\n- `BLANK` - default to a blank commit message."
51723
+ },
51576
51724
  "has_downloads": {
51577
51725
  "description": "Whether downloads are enabled.",
51578
51726
  "default": true,
@@ -58356,6 +58504,14 @@
58356
58504
  "write"
58357
58505
  ]
58358
58506
  },
58507
+ "organization_custom_roles": {
58508
+ "type": "string",
58509
+ "description": "The level of permission to grant the access token for custom roles management.",
58510
+ "enum": [
58511
+ "read",
58512
+ "write"
58513
+ ]
58514
+ },
58359
58515
  "deployments": {
58360
58516
  "type": "string",
58361
58517
  "description": "The level of permission to grant the access token for deployments and deployment statuses.",
@@ -60296,6 +60452,40 @@
60296
60452
  "use_squash_pr_title_as_default": {
60297
60453
  "type": "boolean"
60298
60454
  },
60455
+ "squash_merge_commit_title": {
60456
+ "type": "string",
60457
+ "enum": [
60458
+ "PR_TITLE",
60459
+ "COMMIT_OR_PR_TITLE"
60460
+ ],
60461
+ "description": "The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit)."
60462
+ },
60463
+ "squash_merge_commit_message": {
60464
+ "type": "string",
60465
+ "enum": [
60466
+ "PR_BODY",
60467
+ "COMMIT_MESSAGES",
60468
+ "BLANK"
60469
+ ],
60470
+ "description": "The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message."
60471
+ },
60472
+ "merge_commit_title": {
60473
+ "type": "string",
60474
+ "enum": [
60475
+ "PR_TITLE",
60476
+ "MERGE_MESSAGE"
60477
+ ],
60478
+ "description": "The default value for a merge commit title.\n\n- `PR_TITLE` - default to the pull request's title.\n- `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name)."
60479
+ },
60480
+ "merge_commit_message": {
60481
+ "type": "string",
60482
+ "enum": [
60483
+ "PR_BODY",
60484
+ "PR_TITLE",
60485
+ "BLANK"
60486
+ ],
60487
+ "description": "The default value for a merge commit message.\n\n- `PR_TITLE` - default to the pull request's title.\n- `PR_BODY` - default to the pull request's body.\n- `BLANK` - default to a blank commit message."
60488
+ },
60299
60489
  "allow_merge_commit": {
60300
60490
  "type": "boolean"
60301
60491
  },
@@ -60339,6 +60529,40 @@
60339
60529
  "description": "Whether a squash merge commit can use the pull request title as default.",
60340
60530
  "default": false
60341
60531
  },
60532
+ "squash_merge_commit_title": {
60533
+ "type": "string",
60534
+ "enum": [
60535
+ "PR_TITLE",
60536
+ "COMMIT_OR_PR_TITLE"
60537
+ ],
60538
+ "description": "The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit)."
60539
+ },
60540
+ "squash_merge_commit_message": {
60541
+ "type": "string",
60542
+ "enum": [
60543
+ "PR_BODY",
60544
+ "COMMIT_MESSAGES",
60545
+ "BLANK"
60546
+ ],
60547
+ "description": "The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message."
60548
+ },
60549
+ "merge_commit_title": {
60550
+ "type": "string",
60551
+ "enum": [
60552
+ "PR_TITLE",
60553
+ "MERGE_MESSAGE"
60554
+ ],
60555
+ "description": "The default value for a merge commit title.\n\n- `PR_TITLE` - default to the pull request's title.\n- `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name)."
60556
+ },
60557
+ "merge_commit_message": {
60558
+ "type": "string",
60559
+ "enum": [
60560
+ "PR_BODY",
60561
+ "PR_TITLE",
60562
+ "BLANK"
60563
+ ],
60564
+ "description": "The default value for a merge commit message.\n\n- `PR_TITLE` - default to the pull request's title.\n- `PR_BODY` - default to the pull request's body.\n- `BLANK` - default to a blank commit message."
60565
+ },
60342
60566
  "allow_merge_commit": {
60343
60567
  "description": "Whether to allow merge commits for pull requests.",
60344
60568
  "default": true,
@@ -60349,6 +60573,11 @@
60349
60573
  "description": "Whether to allow forking this repo",
60350
60574
  "type": "boolean"
60351
60575
  },
60576
+ "web_commit_signoff_required": {
60577
+ "description": "Whether to require contributors to sign off on web-based commits",
60578
+ "default": false,
60579
+ "type": "boolean"
60580
+ },
60352
60581
  "subscribers_count": {
60353
60582
  "type": "integer"
60354
60583
  },
@@ -64321,6 +64550,40 @@
64321
64550
  "use_squash_pr_title_as_default": {
64322
64551
  "type": "boolean"
64323
64552
  },
64553
+ "squash_merge_commit_title": {
64554
+ "type": "string",
64555
+ "enum": [
64556
+ "PR_TITLE",
64557
+ "COMMIT_OR_PR_TITLE"
64558
+ ],
64559
+ "description": "The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit)."
64560
+ },
64561
+ "squash_merge_commit_message": {
64562
+ "type": "string",
64563
+ "enum": [
64564
+ "PR_BODY",
64565
+ "COMMIT_MESSAGES",
64566
+ "BLANK"
64567
+ ],
64568
+ "description": "The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message."
64569
+ },
64570
+ "merge_commit_title": {
64571
+ "type": "string",
64572
+ "enum": [
64573
+ "PR_TITLE",
64574
+ "MERGE_MESSAGE"
64575
+ ],
64576
+ "description": "The default value for a merge commit title.\n\n- `PR_TITLE` - default to the pull request's title.\n- `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name)."
64577
+ },
64578
+ "merge_commit_message": {
64579
+ "type": "string",
64580
+ "enum": [
64581
+ "PR_BODY",
64582
+ "PR_TITLE",
64583
+ "BLANK"
64584
+ ],
64585
+ "description": "The default value for a merge commit message.\n\n- `PR_TITLE` - default to the pull request's title.\n- `PR_BODY` - default to the pull request's body.\n- `BLANK` - default to a blank commit message."
64586
+ },
64324
64587
  "allow_merge_commit": {
64325
64588
  "type": "boolean"
64326
64589
  },
@@ -64364,6 +64627,40 @@
64364
64627
  "description": "Whether a squash merge commit can use the pull request title as default.",
64365
64628
  "default": false
64366
64629
  },
64630
+ "squash_merge_commit_title": {
64631
+ "type": "string",
64632
+ "enum": [
64633
+ "PR_TITLE",
64634
+ "COMMIT_OR_PR_TITLE"
64635
+ ],
64636
+ "description": "The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit)."
64637
+ },
64638
+ "squash_merge_commit_message": {
64639
+ "type": "string",
64640
+ "enum": [
64641
+ "PR_BODY",
64642
+ "COMMIT_MESSAGES",
64643
+ "BLANK"
64644
+ ],
64645
+ "description": "The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message."
64646
+ },
64647
+ "merge_commit_title": {
64648
+ "type": "string",
64649
+ "enum": [
64650
+ "PR_TITLE",
64651
+ "MERGE_MESSAGE"
64652
+ ],
64653
+ "description": "The default value for a merge commit title.\n\n- `PR_TITLE` - default to the pull request's title.\n- `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name)."
64654
+ },
64655
+ "merge_commit_message": {
64656
+ "type": "string",
64657
+ "enum": [
64658
+ "PR_BODY",
64659
+ "PR_TITLE",
64660
+ "BLANK"
64661
+ ],
64662
+ "description": "The default value for a merge commit message.\n\n- `PR_TITLE` - default to the pull request's title.\n- `PR_BODY` - default to the pull request's body.\n- `BLANK` - default to a blank commit message."
64663
+ },
64367
64664
  "allow_merge_commit": {
64368
64665
  "description": "Whether to allow merge commits for pull requests.",
64369
64666
  "default": true,
@@ -64374,6 +64671,11 @@
64374
64671
  "description": "Whether to allow forking this repo",
64375
64672
  "type": "boolean"
64376
64673
  },
64674
+ "web_commit_signoff_required": {
64675
+ "description": "Whether to require contributors to sign off on web-based commits",
64676
+ "default": false,
64677
+ "type": "boolean"
64678
+ },
64377
64679
  "subscribers_count": {
64378
64680
  "type": "integer"
64379
64681
  },
@@ -64843,6 +65145,10 @@
64843
65145
  },
64844
65146
  "allow_forking": {
64845
65147
  "type": "boolean"
65148
+ },
65149
+ "web_commit_signoff_required": {
65150
+ "type": "boolean",
65151
+ "example": false
64846
65152
  }
64847
65153
  },
64848
65154
  "required": [
@@ -65253,6 +65559,10 @@
65253
65559
  "example": false,
65254
65560
  "nullable": true
65255
65561
  },
65562
+ "web_commit_signoff_required": {
65563
+ "type": "boolean",
65564
+ "example": false
65565
+ },
65256
65566
  "updated_at": {
65257
65567
  "type": "string",
65258
65568
  "format": "date-time"
@@ -67253,6 +67563,12 @@
67253
67563
  "type": "boolean",
67254
67564
  "example": false
67255
67565
  },
67566
+ "web_commit_signoff_required": {
67567
+ "description": "Whether to require contributors to sign off on web-based commits",
67568
+ "default": false,
67569
+ "type": "boolean",
67570
+ "example": false
67571
+ },
67256
67572
  "subscribers_count": {
67257
67573
  "type": "integer"
67258
67574
  },
@@ -68020,10 +68336,52 @@
68020
68336
  "type": "boolean",
68021
68337
  "example": false
68022
68338
  },
68339
+ "squash_merge_commit_title": {
68340
+ "type": "string",
68341
+ "example": "PR_TITLE",
68342
+ "enum": [
68343
+ "PR_TITLE",
68344
+ "COMMIT_OR_PR_TITLE"
68345
+ ],
68346
+ "description": "The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit)."
68347
+ },
68348
+ "squash_merge_commit_message": {
68349
+ "type": "string",
68350
+ "example": "PR_BODY",
68351
+ "enum": [
68352
+ "PR_BODY",
68353
+ "COMMIT_MESSAGES",
68354
+ "BLANK"
68355
+ ],
68356
+ "description": "The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message."
68357
+ },
68358
+ "merge_commit_title": {
68359
+ "type": "string",
68360
+ "example": "PR_TITLE",
68361
+ "enum": [
68362
+ "PR_TITLE",
68363
+ "MERGE_MESSAGE"
68364
+ ],
68365
+ "description": "The default value for a merge commit title.\n\n - `PR_TITLE` - default to the pull request's title.\n - `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name)."
68366
+ },
68367
+ "merge_commit_message": {
68368
+ "type": "string",
68369
+ "example": "PR_BODY",
68370
+ "enum": [
68371
+ "PR_BODY",
68372
+ "PR_TITLE",
68373
+ "BLANK"
68374
+ ],
68375
+ "description": "The default value for a merge commit message.\n\n- `PR_TITLE` - default to the pull request's title.\n- `PR_BODY` - default to the pull request's body.\n- `BLANK` - default to a blank commit message."
68376
+ },
68023
68377
  "allow_forking": {
68024
68378
  "type": "boolean",
68025
68379
  "example": true
68026
68380
  },
68381
+ "web_commit_signoff_required": {
68382
+ "type": "boolean",
68383
+ "example": false
68384
+ },
68027
68385
  "subscribers_count": {
68028
68386
  "type": "integer",
68029
68387
  "example": 42
@@ -77787,6 +78145,9 @@
77787
78145
  },
77788
78146
  "is_template": {
77789
78147
  "type": "boolean"
78148
+ },
78149
+ "web_commit_signoff_required": {
78150
+ "type": "boolean"
77790
78151
  }
77791
78152
  },
77792
78153
  "required": [
@@ -78361,6 +78722,9 @@
78361
78722
  },
78362
78723
  "allow_forking": {
78363
78724
  "type": "boolean"
78725
+ },
78726
+ "web_commit_signoff_required": {
78727
+ "type": "boolean"
78364
78728
  }
78365
78729
  },
78366
78730
  "required": [
@@ -80438,6 +80802,10 @@
80438
80802
  },
80439
80803
  "is_template": {
80440
80804
  "type": "boolean"
80805
+ },
80806
+ "web_commit_signoff_required": {
80807
+ "type": "boolean",
80808
+ "example": false
80441
80809
  }
80442
80810
  },
80443
80811
  "required": [
@@ -86919,6 +87287,7 @@
86919
87287
  "members_can_create_public_pages": true,
86920
87288
  "members_can_create_private_pages": true,
86921
87289
  "members_can_fork_private_repositories": false,
87290
+ "web_commit_signoff_required": false,
86922
87291
  "updated_at": "2014-03-03T18:58:10Z"
86923
87292
  }
86924
87293
  },
@@ -90701,6 +91070,7 @@
90701
91070
  "delete_branch_on_merge": true,
90702
91071
  "allow_merge_commit": true,
90703
91072
  "allow_forking": true,
91073
+ "web_commit_signoff_required": false,
90704
91074
  "subscribers_count": 42,
90705
91075
  "network_count": 0,
90706
91076
  "organization": {