@octokit/openapi 7.3.0 → 7.4.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 (33) hide show
  1. package/generated/api.github.com.deref.json +8561 -1
  2. package/generated/api.github.com.json +322 -10
  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 +103 -1
  6. package/generated/ghes-3.2-diff-to-ghes-3.3.json +103 -1
  7. package/generated/ghes-3.2.deref.json +140 -1
  8. package/generated/ghes-3.2.json +137 -10
  9. package/generated/ghes-3.3-diff-to-ghes-3.4.deref.json +1 -1
  10. package/generated/ghes-3.3-diff-to-ghes-3.4.json +1 -1
  11. package/generated/ghes-3.3.deref.json +140 -1
  12. package/generated/ghes-3.3.json +137 -10
  13. package/generated/ghes-3.4-diff-to-ghes-3.5.deref.json +1 -1
  14. package/generated/ghes-3.4-diff-to-ghes-3.5.json +1 -1
  15. package/generated/ghes-3.4.deref.json +141 -1
  16. package/generated/ghes-3.4.json +138 -10
  17. package/generated/ghes-3.5-anicca-diff-to-ghes-3.6.deref.json +764 -0
  18. package/generated/ghes-3.5-diff-to-api.github.com.deref.json +1 -1
  19. package/generated/ghes-3.5-diff-to-api.github.com.json +1 -1
  20. package/generated/ghes-3.5-diff-to-ghes-3.6.deref.json +125 -1
  21. package/generated/ghes-3.5-diff-to-ghes-3.6.json +124 -4
  22. package/generated/ghes-3.5.deref.json +151 -1
  23. package/generated/ghes-3.5.json +148 -10
  24. package/generated/ghes-3.6-diff-to-api.github.com.deref.json +311 -1
  25. package/generated/ghes-3.6-diff-to-api.github.com.json +175 -1
  26. package/generated/ghes-3.6.deref.json +6997 -1
  27. package/generated/ghes-3.6.json +322 -10
  28. package/generated/github.ae-anicca-diff-to-api.github.com.deref.json +701 -3
  29. package/generated/github.ae-diff-to-api.github.com.deref.json +115 -1
  30. package/generated/github.ae-diff-to-api.github.com.json +114 -4
  31. package/generated/github.ae.deref.json +129 -1
  32. package/generated/github.ae.json +126 -10
  33. package/package.json +1 -1
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "openapi": "3.0.3",
3
3
  "info": {
4
- "version": "7.3.0",
4
+ "version": "7.4.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": {
@@ -36648,6 +36648,40 @@
36648
36648
  "type": "boolean",
36649
36649
  "description": "Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message.",
36650
36650
  "default": false
36651
+ },
36652
+ "squash_merge_commit_title": {
36653
+ "type": "string",
36654
+ "enum": [
36655
+ "PR_TITLE",
36656
+ "COMMIT_OR_PR_TITLE"
36657
+ ],
36658
+ "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)."
36659
+ },
36660
+ "squash_merge_commit_message": {
36661
+ "type": "string",
36662
+ "enum": [
36663
+ "PR_BODY",
36664
+ "COMMIT_MESSAGES",
36665
+ "BLANK"
36666
+ ],
36667
+ "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."
36668
+ },
36669
+ "merge_commit_title": {
36670
+ "type": "string",
36671
+ "enum": [
36672
+ "PR_TITLE",
36673
+ "MERGE_MESSAGE"
36674
+ ],
36675
+ "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)."
36676
+ },
36677
+ "merge_commit_message": {
36678
+ "type": "string",
36679
+ "enum": [
36680
+ "PR_BODY",
36681
+ "PR_TITLE",
36682
+ "BLANK"
36683
+ ],
36684
+ "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."
36651
36685
  }
36652
36686
  },
36653
36687
  "required": [
@@ -47339,6 +47373,40 @@
47339
47373
  "description": "Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message.",
47340
47374
  "default": false
47341
47375
  },
47376
+ "squash_merge_commit_title": {
47377
+ "type": "string",
47378
+ "enum": [
47379
+ "PR_TITLE",
47380
+ "COMMIT_OR_PR_TITLE"
47381
+ ],
47382
+ "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)."
47383
+ },
47384
+ "squash_merge_commit_message": {
47385
+ "type": "string",
47386
+ "enum": [
47387
+ "PR_BODY",
47388
+ "COMMIT_MESSAGES",
47389
+ "BLANK"
47390
+ ],
47391
+ "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."
47392
+ },
47393
+ "merge_commit_title": {
47394
+ "type": "string",
47395
+ "enum": [
47396
+ "PR_TITLE",
47397
+ "MERGE_MESSAGE"
47398
+ ],
47399
+ "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)."
47400
+ },
47401
+ "merge_commit_message": {
47402
+ "type": "string",
47403
+ "enum": [
47404
+ "PR_BODY",
47405
+ "PR_TITLE",
47406
+ "BLANK"
47407
+ ],
47408
+ "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."
47409
+ },
47342
47410
  "archived": {
47343
47411
  "type": "boolean",
47344
47412
  "description": "`true` to archive this repository. **Note**: You cannot unarchive repositories through the API.",
@@ -67561,6 +67629,11 @@
67561
67629
  "schema": {
67562
67630
  "type": "object",
67563
67631
  "nullable": true
67632
+ },
67633
+ "examples": {
67634
+ "default": {
67635
+ "value": null
67636
+ }
67564
67637
  }
67565
67638
  }
67566
67639
  }
@@ -67571,9 +67644,16 @@
67571
67644
  "content": {
67572
67645
  "application/json": {
67573
67646
  "schema": {
67647
+ "title": "Empty Object",
67648
+ "description": "An object without any properties.",
67574
67649
  "type": "object",
67575
67650
  "properties": {},
67576
67651
  "additionalProperties": false
67652
+ },
67653
+ "examples": {
67654
+ "default": {
67655
+ "value": null
67656
+ }
67577
67657
  }
67578
67658
  }
67579
67659
  }
@@ -172804,6 +172884,40 @@
172804
172884
  "type": "boolean",
172805
172885
  "example": false
172806
172886
  },
172887
+ "squash_merge_commit_title": {
172888
+ "type": "string",
172889
+ "enum": [
172890
+ "PR_TITLE",
172891
+ "COMMIT_OR_PR_TITLE"
172892
+ ],
172893
+ "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)."
172894
+ },
172895
+ "squash_merge_commit_message": {
172896
+ "type": "string",
172897
+ "enum": [
172898
+ "PR_BODY",
172899
+ "COMMIT_MESSAGES",
172900
+ "BLANK"
172901
+ ],
172902
+ "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."
172903
+ },
172904
+ "merge_commit_title": {
172905
+ "type": "string",
172906
+ "enum": [
172907
+ "PR_TITLE",
172908
+ "MERGE_MESSAGE"
172909
+ ],
172910
+ "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)."
172911
+ },
172912
+ "merge_commit_message": {
172913
+ "type": "string",
172914
+ "enum": [
172915
+ "PR_BODY",
172916
+ "PR_TITLE",
172917
+ "BLANK"
172918
+ ],
172919
+ "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."
172920
+ },
172807
172921
  "has_downloads": {
172808
172922
  "description": "Whether downloads are enabled.",
172809
172923
  "default": true,
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "openapi": "3.0.3",
3
3
  "info": {
4
- "version": "7.3.0",
4
+ "version": "7.4.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": {
@@ -4716,6 +4716,40 @@
4716
4716
  "type": "boolean",
4717
4717
  "description": "Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message.",
4718
4718
  "default": false
4719
+ },
4720
+ "squash_merge_commit_title": {
4721
+ "type": "string",
4722
+ "enum": [
4723
+ "PR_TITLE",
4724
+ "COMMIT_OR_PR_TITLE"
4725
+ ],
4726
+ "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)."
4727
+ },
4728
+ "squash_merge_commit_message": {
4729
+ "type": "string",
4730
+ "enum": [
4731
+ "PR_BODY",
4732
+ "COMMIT_MESSAGES",
4733
+ "BLANK"
4734
+ ],
4735
+ "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."
4736
+ },
4737
+ "merge_commit_title": {
4738
+ "type": "string",
4739
+ "enum": [
4740
+ "PR_TITLE",
4741
+ "MERGE_MESSAGE"
4742
+ ],
4743
+ "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)."
4744
+ },
4745
+ "merge_commit_message": {
4746
+ "type": "string",
4747
+ "enum": [
4748
+ "PR_BODY",
4749
+ "PR_TITLE",
4750
+ "BLANK"
4751
+ ],
4752
+ "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."
4719
4753
  }
4720
4754
  },
4721
4755
  "required": [
@@ -5184,6 +5218,40 @@
5184
5218
  "description": "Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message.",
5185
5219
  "default": false
5186
5220
  },
5221
+ "squash_merge_commit_title": {
5222
+ "type": "string",
5223
+ "enum": [
5224
+ "PR_TITLE",
5225
+ "COMMIT_OR_PR_TITLE"
5226
+ ],
5227
+ "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)."
5228
+ },
5229
+ "squash_merge_commit_message": {
5230
+ "type": "string",
5231
+ "enum": [
5232
+ "PR_BODY",
5233
+ "COMMIT_MESSAGES",
5234
+ "BLANK"
5235
+ ],
5236
+ "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."
5237
+ },
5238
+ "merge_commit_title": {
5239
+ "type": "string",
5240
+ "enum": [
5241
+ "PR_TITLE",
5242
+ "MERGE_MESSAGE"
5243
+ ],
5244
+ "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)."
5245
+ },
5246
+ "merge_commit_message": {
5247
+ "type": "string",
5248
+ "enum": [
5249
+ "PR_BODY",
5250
+ "PR_TITLE",
5251
+ "BLANK"
5252
+ ],
5253
+ "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."
5254
+ },
5187
5255
  "archived": {
5188
5256
  "type": "boolean",
5189
5257
  "description": "`true` to archive this repository. **Note**: You cannot unarchive repositories through the API.",
@@ -5605,6 +5673,11 @@
5605
5673
  "schema": {
5606
5674
  "type": "object",
5607
5675
  "nullable": true
5676
+ },
5677
+ "examples": {
5678
+ "default": {
5679
+ "value": null
5680
+ }
5608
5681
  }
5609
5682
  }
5610
5683
  }
@@ -5615,9 +5688,12 @@
5615
5688
  "content": {
5616
5689
  "application/json": {
5617
5690
  "schema": {
5618
- "type": "object",
5619
- "properties": {},
5620
- "additionalProperties": false
5691
+ "$ref": "#/components/schemas/empty-object"
5692
+ },
5693
+ "examples": {
5694
+ "default": {
5695
+ "value": null
5696
+ }
5621
5697
  }
5622
5698
  }
5623
5699
  }
@@ -10932,6 +11008,40 @@
10932
11008
  "type": "boolean",
10933
11009
  "example": false
10934
11010
  },
11011
+ "squash_merge_commit_title": {
11012
+ "type": "string",
11013
+ "enum": [
11014
+ "PR_TITLE",
11015
+ "COMMIT_OR_PR_TITLE"
11016
+ ],
11017
+ "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)."
11018
+ },
11019
+ "squash_merge_commit_message": {
11020
+ "type": "string",
11021
+ "enum": [
11022
+ "PR_BODY",
11023
+ "COMMIT_MESSAGES",
11024
+ "BLANK"
11025
+ ],
11026
+ "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."
11027
+ },
11028
+ "merge_commit_title": {
11029
+ "type": "string",
11030
+ "enum": [
11031
+ "PR_TITLE",
11032
+ "MERGE_MESSAGE"
11033
+ ],
11034
+ "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)."
11035
+ },
11036
+ "merge_commit_message": {
11037
+ "type": "string",
11038
+ "enum": [
11039
+ "PR_BODY",
11040
+ "PR_TITLE",
11041
+ "BLANK"
11042
+ ],
11043
+ "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."
11044
+ },
10935
11045
  "has_downloads": {
10936
11046
  "description": "Whether downloads are enabled.",
10937
11047
  "default": true,
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "openapi": "3.0.3",
3
3
  "info": {
4
- "version": "7.3.0",
4
+ "version": "7.4.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": {
@@ -67837,6 +67837,40 @@
67837
67837
  "type": "boolean",
67838
67838
  "description": "Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message.",
67839
67839
  "default": false
67840
+ },
67841
+ "squash_merge_commit_title": {
67842
+ "type": "string",
67843
+ "enum": [
67844
+ "PR_TITLE",
67845
+ "COMMIT_OR_PR_TITLE"
67846
+ ],
67847
+ "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)."
67848
+ },
67849
+ "squash_merge_commit_message": {
67850
+ "type": "string",
67851
+ "enum": [
67852
+ "PR_BODY",
67853
+ "COMMIT_MESSAGES",
67854
+ "BLANK"
67855
+ ],
67856
+ "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."
67857
+ },
67858
+ "merge_commit_title": {
67859
+ "type": "string",
67860
+ "enum": [
67861
+ "PR_TITLE",
67862
+ "MERGE_MESSAGE"
67863
+ ],
67864
+ "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)."
67865
+ },
67866
+ "merge_commit_message": {
67867
+ "type": "string",
67868
+ "enum": [
67869
+ "PR_BODY",
67870
+ "PR_TITLE",
67871
+ "BLANK"
67872
+ ],
67873
+ "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."
67840
67874
  }
67841
67875
  },
67842
67876
  "required": [
@@ -92933,6 +92967,40 @@
92933
92967
  "description": "Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message.",
92934
92968
  "default": false
92935
92969
  },
92970
+ "squash_merge_commit_title": {
92971
+ "type": "string",
92972
+ "enum": [
92973
+ "PR_TITLE",
92974
+ "COMMIT_OR_PR_TITLE"
92975
+ ],
92976
+ "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)."
92977
+ },
92978
+ "squash_merge_commit_message": {
92979
+ "type": "string",
92980
+ "enum": [
92981
+ "PR_BODY",
92982
+ "COMMIT_MESSAGES",
92983
+ "BLANK"
92984
+ ],
92985
+ "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."
92986
+ },
92987
+ "merge_commit_title": {
92988
+ "type": "string",
92989
+ "enum": [
92990
+ "PR_TITLE",
92991
+ "MERGE_MESSAGE"
92992
+ ],
92993
+ "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)."
92994
+ },
92995
+ "merge_commit_message": {
92996
+ "type": "string",
92997
+ "enum": [
92998
+ "PR_BODY",
92999
+ "PR_TITLE",
93000
+ "BLANK"
93001
+ ],
93002
+ "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."
93003
+ },
92936
93004
  "archived": {
92937
93005
  "type": "boolean",
92938
93006
  "description": "`true` to archive this repository. **Note**: You cannot unarchive repositories through the API.",
@@ -115946,9 +116014,16 @@
115946
116014
  "content": {
115947
116015
  "application/json": {
115948
116016
  "schema": {
116017
+ "title": "Empty Object",
116018
+ "description": "An object without any properties.",
115949
116019
  "type": "object",
115950
116020
  "properties": {},
115951
116021
  "additionalProperties": false
116022
+ },
116023
+ "examples": {
116024
+ "default": {
116025
+ "value": null
116026
+ }
115952
116027
  }
115953
116028
  }
115954
116029
  }
@@ -116626,6 +116701,11 @@
116626
116701
  "schema": {
116627
116702
  "type": "object",
116628
116703
  "nullable": true
116704
+ },
116705
+ "examples": {
116706
+ "default": {
116707
+ "value": null
116708
+ }
116629
116709
  }
116630
116710
  }
116631
116711
  }
@@ -116636,9 +116716,16 @@
116636
116716
  "content": {
116637
116717
  "application/json": {
116638
116718
  "schema": {
116719
+ "title": "Empty Object",
116720
+ "description": "An object without any properties.",
116639
116721
  "type": "object",
116640
116722
  "properties": {},
116641
116723
  "additionalProperties": false
116724
+ },
116725
+ "examples": {
116726
+ "default": {
116727
+ "value": null
116728
+ }
116642
116729
  }
116643
116730
  }
116644
116731
  }
@@ -117287,9 +117374,16 @@
117287
117374
  "content": {
117288
117375
  "application/json": {
117289
117376
  "schema": {
117377
+ "title": "Empty Object",
117378
+ "description": "An object without any properties.",
117290
117379
  "type": "object",
117291
117380
  "properties": {},
117292
117381
  "additionalProperties": false
117382
+ },
117383
+ "examples": {
117384
+ "default": {
117385
+ "value": null
117386
+ }
117293
117387
  }
117294
117388
  }
117295
117389
  }
@@ -356947,6 +357041,40 @@
356947
357041
  "type": "boolean",
356948
357042
  "example": false
356949
357043
  },
357044
+ "squash_merge_commit_title": {
357045
+ "type": "string",
357046
+ "enum": [
357047
+ "PR_TITLE",
357048
+ "COMMIT_OR_PR_TITLE"
357049
+ ],
357050
+ "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)."
357051
+ },
357052
+ "squash_merge_commit_message": {
357053
+ "type": "string",
357054
+ "enum": [
357055
+ "PR_BODY",
357056
+ "COMMIT_MESSAGES",
357057
+ "BLANK"
357058
+ ],
357059
+ "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."
357060
+ },
357061
+ "merge_commit_title": {
357062
+ "type": "string",
357063
+ "enum": [
357064
+ "PR_TITLE",
357065
+ "MERGE_MESSAGE"
357066
+ ],
357067
+ "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)."
357068
+ },
357069
+ "merge_commit_message": {
357070
+ "type": "string",
357071
+ "enum": [
357072
+ "PR_BODY",
357073
+ "PR_TITLE",
357074
+ "BLANK"
357075
+ ],
357076
+ "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."
357077
+ },
356950
357078
  "has_downloads": {
356951
357079
  "description": "Whether downloads are enabled.",
356952
357080
  "default": true,