@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": {
@@ -9606,6 +9606,7 @@
9606
9606
  "parameters": [
9607
9607
  {
9608
9608
  "name": "organization_id",
9609
+ "description": "The unique identifier of the organization.",
9609
9610
  "in": "path",
9610
9611
  "required": true,
9611
9612
  "schema": {
@@ -15658,6 +15659,40 @@
15658
15659
  "type": "boolean",
15659
15660
  "description": "Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message.",
15660
15661
  "default": false
15662
+ },
15663
+ "squash_merge_commit_title": {
15664
+ "type": "string",
15665
+ "enum": [
15666
+ "PR_TITLE",
15667
+ "COMMIT_OR_PR_TITLE"
15668
+ ],
15669
+ "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)."
15670
+ },
15671
+ "squash_merge_commit_message": {
15672
+ "type": "string",
15673
+ "enum": [
15674
+ "PR_BODY",
15675
+ "COMMIT_MESSAGES",
15676
+ "BLANK"
15677
+ ],
15678
+ "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."
15679
+ },
15680
+ "merge_commit_title": {
15681
+ "type": "string",
15682
+ "enum": [
15683
+ "PR_TITLE",
15684
+ "MERGE_MESSAGE"
15685
+ ],
15686
+ "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)."
15687
+ },
15688
+ "merge_commit_message": {
15689
+ "type": "string",
15690
+ "enum": [
15691
+ "PR_BODY",
15692
+ "PR_TITLE",
15693
+ "BLANK"
15694
+ ],
15695
+ "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."
15661
15696
  }
15662
15697
  },
15663
15698
  "required": [
@@ -19857,6 +19892,40 @@
19857
19892
  "description": "Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message.",
19858
19893
  "default": false
19859
19894
  },
19895
+ "squash_merge_commit_title": {
19896
+ "type": "string",
19897
+ "enum": [
19898
+ "PR_TITLE",
19899
+ "COMMIT_OR_PR_TITLE"
19900
+ ],
19901
+ "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)."
19902
+ },
19903
+ "squash_merge_commit_message": {
19904
+ "type": "string",
19905
+ "enum": [
19906
+ "PR_BODY",
19907
+ "COMMIT_MESSAGES",
19908
+ "BLANK"
19909
+ ],
19910
+ "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."
19911
+ },
19912
+ "merge_commit_title": {
19913
+ "type": "string",
19914
+ "enum": [
19915
+ "PR_TITLE",
19916
+ "MERGE_MESSAGE"
19917
+ ],
19918
+ "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)."
19919
+ },
19920
+ "merge_commit_message": {
19921
+ "type": "string",
19922
+ "enum": [
19923
+ "PR_BODY",
19924
+ "PR_TITLE",
19925
+ "BLANK"
19926
+ ],
19927
+ "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."
19928
+ },
19860
19929
  "archived": {
19861
19930
  "type": "boolean",
19862
19931
  "description": "`true` to archive this repository. **Note**: You cannot unarchive repositories through the API.",
@@ -20465,6 +20534,11 @@
20465
20534
  "schema": {
20466
20535
  "type": "object",
20467
20536
  "nullable": true
20537
+ },
20538
+ "examples": {
20539
+ "default": {
20540
+ "value": null
20541
+ }
20468
20542
  }
20469
20543
  }
20470
20544
  }
@@ -21930,9 +22004,12 @@
21930
22004
  "content": {
21931
22005
  "application/json": {
21932
22006
  "schema": {
21933
- "type": "object",
21934
- "properties": {},
21935
- "additionalProperties": false
22007
+ "$ref": "#/components/schemas/empty-object"
22008
+ },
22009
+ "examples": {
22010
+ "default": {
22011
+ "value": null
22012
+ }
21936
22013
  }
21937
22014
  }
21938
22015
  }
@@ -22237,6 +22314,17 @@
22237
22314
  "state",
22238
22315
  "comment"
22239
22316
  ]
22317
+ },
22318
+ "examples": {
22319
+ "default": {
22320
+ "value": {
22321
+ "environment_ids": [
22322
+ 161171787
22323
+ ],
22324
+ "state": "approved",
22325
+ "comment": "Ship it!"
22326
+ }
22327
+ }
22240
22328
  }
22241
22329
  }
22242
22330
  }
@@ -22300,6 +22388,11 @@
22300
22388
  "schema": {
22301
22389
  "type": "object",
22302
22390
  "nullable": true
22391
+ },
22392
+ "examples": {
22393
+ "default": {
22394
+ "value": null
22395
+ }
22303
22396
  }
22304
22397
  }
22305
22398
  }
@@ -22310,9 +22403,12 @@
22310
22403
  "content": {
22311
22404
  "application/json": {
22312
22405
  "schema": {
22313
- "type": "object",
22314
- "properties": {},
22315
- "additionalProperties": false
22406
+ "$ref": "#/components/schemas/empty-object"
22407
+ },
22408
+ "examples": {
22409
+ "default": {
22410
+ "value": null
22411
+ }
22316
22412
  }
22317
22413
  }
22318
22414
  }
@@ -22363,6 +22459,11 @@
22363
22459
  "schema": {
22364
22460
  "type": "object",
22365
22461
  "nullable": true
22462
+ },
22463
+ "examples": {
22464
+ "default": {
22465
+ "value": null
22466
+ }
22366
22467
  }
22367
22468
  }
22368
22469
  }
@@ -22622,9 +22723,12 @@
22622
22723
  "content": {
22623
22724
  "application/json": {
22624
22725
  "schema": {
22625
- "type": "object",
22626
- "properties": {},
22627
- "additionalProperties": false
22726
+ "$ref": "#/components/schemas/empty-object"
22727
+ },
22728
+ "examples": {
22729
+ "default": {
22730
+ "value": null
22731
+ }
22628
22732
  }
22629
22733
  }
22630
22734
  }
@@ -51103,6 +51207,40 @@
51103
51207
  "type": "boolean",
51104
51208
  "example": false
51105
51209
  },
51210
+ "squash_merge_commit_title": {
51211
+ "type": "string",
51212
+ "enum": [
51213
+ "PR_TITLE",
51214
+ "COMMIT_OR_PR_TITLE"
51215
+ ],
51216
+ "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)."
51217
+ },
51218
+ "squash_merge_commit_message": {
51219
+ "type": "string",
51220
+ "enum": [
51221
+ "PR_BODY",
51222
+ "COMMIT_MESSAGES",
51223
+ "BLANK"
51224
+ ],
51225
+ "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."
51226
+ },
51227
+ "merge_commit_title": {
51228
+ "type": "string",
51229
+ "enum": [
51230
+ "PR_TITLE",
51231
+ "MERGE_MESSAGE"
51232
+ ],
51233
+ "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)."
51234
+ },
51235
+ "merge_commit_message": {
51236
+ "type": "string",
51237
+ "enum": [
51238
+ "PR_BODY",
51239
+ "PR_TITLE",
51240
+ "BLANK"
51241
+ ],
51242
+ "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."
51243
+ },
51106
51244
  "has_downloads": {
51107
51245
  "description": "Whether downloads are enabled.",
51108
51246
  "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": {
@@ -21857,6 +21857,40 @@
21857
21857
  "use_squash_pr_title_as_default": {
21858
21858
  "type": "boolean"
21859
21859
  },
21860
+ "squash_merge_commit_title": {
21861
+ "type": "string",
21862
+ "enum": [
21863
+ "PR_TITLE",
21864
+ "COMMIT_OR_PR_TITLE"
21865
+ ],
21866
+ "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)."
21867
+ },
21868
+ "squash_merge_commit_message": {
21869
+ "type": "string",
21870
+ "enum": [
21871
+ "PR_BODY",
21872
+ "COMMIT_MESSAGES",
21873
+ "BLANK"
21874
+ ],
21875
+ "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."
21876
+ },
21877
+ "merge_commit_title": {
21878
+ "type": "string",
21879
+ "enum": [
21880
+ "PR_TITLE",
21881
+ "MERGE_MESSAGE"
21882
+ ],
21883
+ "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)."
21884
+ },
21885
+ "merge_commit_message": {
21886
+ "type": "string",
21887
+ "enum": [
21888
+ "PR_BODY",
21889
+ "PR_TITLE",
21890
+ "BLANK"
21891
+ ],
21892
+ "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."
21893
+ },
21860
21894
  "allow_merge_commit": {
21861
21895
  "type": "boolean"
21862
21896
  },
@@ -21900,6 +21934,40 @@
21900
21934
  "description": "Whether a squash merge commit can use the pull request title as default.",
21901
21935
  "default": false
21902
21936
  },
21937
+ "squash_merge_commit_title": {
21938
+ "type": "string",
21939
+ "enum": [
21940
+ "PR_TITLE",
21941
+ "COMMIT_OR_PR_TITLE"
21942
+ ],
21943
+ "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)."
21944
+ },
21945
+ "squash_merge_commit_message": {
21946
+ "type": "string",
21947
+ "enum": [
21948
+ "PR_BODY",
21949
+ "COMMIT_MESSAGES",
21950
+ "BLANK"
21951
+ ],
21952
+ "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."
21953
+ },
21954
+ "merge_commit_title": {
21955
+ "type": "string",
21956
+ "enum": [
21957
+ "PR_TITLE",
21958
+ "MERGE_MESSAGE"
21959
+ ],
21960
+ "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)."
21961
+ },
21962
+ "merge_commit_message": {
21963
+ "type": "string",
21964
+ "enum": [
21965
+ "PR_BODY",
21966
+ "PR_TITLE",
21967
+ "BLANK"
21968
+ ],
21969
+ "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."
21970
+ },
21903
21971
  "allow_merge_commit": {
21904
21972
  "description": "Whether to allow merge commits for pull requests.",
21905
21973
  "default": true,
@@ -22035,6 +22103,44 @@
22035
22103
  "type": "boolean",
22036
22104
  "example": false
22037
22105
  },
22106
+ "squash_merge_commit_title": {
22107
+ "type": "string",
22108
+ "example": "PR_TITLE",
22109
+ "enum": [
22110
+ "PR_TITLE",
22111
+ "COMMIT_OR_PR_TITLE"
22112
+ ],
22113
+ "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)."
22114
+ },
22115
+ "squash_merge_commit_message": {
22116
+ "type": "string",
22117
+ "example": "PR_BODY",
22118
+ "enum": [
22119
+ "PR_BODY",
22120
+ "COMMIT_MESSAGES",
22121
+ "BLANK"
22122
+ ],
22123
+ "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."
22124
+ },
22125
+ "merge_commit_title": {
22126
+ "type": "string",
22127
+ "example": "PR_TITLE",
22128
+ "enum": [
22129
+ "PR_TITLE",
22130
+ "MERGE_MESSAGE"
22131
+ ],
22132
+ "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)."
22133
+ },
22134
+ "merge_commit_message": {
22135
+ "type": "string",
22136
+ "example": "PR_BODY",
22137
+ "enum": [
22138
+ "PR_BODY",
22139
+ "PR_TITLE",
22140
+ "BLANK"
22141
+ ],
22142
+ "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."
22143
+ },
22038
22144
  "allow_forking": {
22039
22145
  "type": "boolean",
22040
22146
  "example": true
@@ -23176,6 +23282,40 @@
23176
23282
  "use_squash_pr_title_as_default": {
23177
23283
  "type": "boolean"
23178
23284
  },
23285
+ "squash_merge_commit_title": {
23286
+ "type": "string",
23287
+ "enum": [
23288
+ "PR_TITLE",
23289
+ "COMMIT_OR_PR_TITLE"
23290
+ ],
23291
+ "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)."
23292
+ },
23293
+ "squash_merge_commit_message": {
23294
+ "type": "string",
23295
+ "enum": [
23296
+ "PR_BODY",
23297
+ "COMMIT_MESSAGES",
23298
+ "BLANK"
23299
+ ],
23300
+ "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."
23301
+ },
23302
+ "merge_commit_title": {
23303
+ "type": "string",
23304
+ "enum": [
23305
+ "PR_TITLE",
23306
+ "MERGE_MESSAGE"
23307
+ ],
23308
+ "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)."
23309
+ },
23310
+ "merge_commit_message": {
23311
+ "type": "string",
23312
+ "enum": [
23313
+ "PR_BODY",
23314
+ "PR_TITLE",
23315
+ "BLANK"
23316
+ ],
23317
+ "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."
23318
+ },
23179
23319
  "allow_merge_commit": {
23180
23320
  "type": "boolean"
23181
23321
  },
@@ -23219,6 +23359,40 @@
23219
23359
  "description": "Whether a squash merge commit can use the pull request title as default.",
23220
23360
  "default": false
23221
23361
  },
23362
+ "squash_merge_commit_title": {
23363
+ "type": "string",
23364
+ "enum": [
23365
+ "PR_TITLE",
23366
+ "COMMIT_OR_PR_TITLE"
23367
+ ],
23368
+ "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)."
23369
+ },
23370
+ "squash_merge_commit_message": {
23371
+ "type": "string",
23372
+ "enum": [
23373
+ "PR_BODY",
23374
+ "COMMIT_MESSAGES",
23375
+ "BLANK"
23376
+ ],
23377
+ "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."
23378
+ },
23379
+ "merge_commit_title": {
23380
+ "type": "string",
23381
+ "enum": [
23382
+ "PR_TITLE",
23383
+ "MERGE_MESSAGE"
23384
+ ],
23385
+ "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)."
23386
+ },
23387
+ "merge_commit_message": {
23388
+ "type": "string",
23389
+ "enum": [
23390
+ "PR_BODY",
23391
+ "PR_TITLE",
23392
+ "BLANK"
23393
+ ],
23394
+ "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."
23395
+ },
23222
23396
  "allow_merge_commit": {
23223
23397
  "description": "Whether to allow merge commits for pull requests.",
23224
23398
  "default": true,
@@ -24292,6 +24466,40 @@
24292
24466
  "use_squash_pr_title_as_default": {
24293
24467
  "type": "boolean"
24294
24468
  },
24469
+ "squash_merge_commit_title": {
24470
+ "type": "string",
24471
+ "enum": [
24472
+ "PR_TITLE",
24473
+ "COMMIT_OR_PR_TITLE"
24474
+ ],
24475
+ "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)."
24476
+ },
24477
+ "squash_merge_commit_message": {
24478
+ "type": "string",
24479
+ "enum": [
24480
+ "PR_BODY",
24481
+ "COMMIT_MESSAGES",
24482
+ "BLANK"
24483
+ ],
24484
+ "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."
24485
+ },
24486
+ "merge_commit_title": {
24487
+ "type": "string",
24488
+ "enum": [
24489
+ "PR_TITLE",
24490
+ "MERGE_MESSAGE"
24491
+ ],
24492
+ "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)."
24493
+ },
24494
+ "merge_commit_message": {
24495
+ "type": "string",
24496
+ "enum": [
24497
+ "PR_BODY",
24498
+ "PR_TITLE",
24499
+ "BLANK"
24500
+ ],
24501
+ "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."
24502
+ },
24295
24503
  "allow_merge_commit": {
24296
24504
  "type": "boolean"
24297
24505
  },
@@ -24335,6 +24543,40 @@
24335
24543
  "description": "Whether a squash merge commit can use the pull request title as default.",
24336
24544
  "default": false
24337
24545
  },
24546
+ "squash_merge_commit_title": {
24547
+ "type": "string",
24548
+ "enum": [
24549
+ "PR_TITLE",
24550
+ "COMMIT_OR_PR_TITLE"
24551
+ ],
24552
+ "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)."
24553
+ },
24554
+ "squash_merge_commit_message": {
24555
+ "type": "string",
24556
+ "enum": [
24557
+ "PR_BODY",
24558
+ "COMMIT_MESSAGES",
24559
+ "BLANK"
24560
+ ],
24561
+ "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."
24562
+ },
24563
+ "merge_commit_title": {
24564
+ "type": "string",
24565
+ "enum": [
24566
+ "PR_TITLE",
24567
+ "MERGE_MESSAGE"
24568
+ ],
24569
+ "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)."
24570
+ },
24571
+ "merge_commit_message": {
24572
+ "type": "string",
24573
+ "enum": [
24574
+ "PR_BODY",
24575
+ "PR_TITLE",
24576
+ "BLANK"
24577
+ ],
24578
+ "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."
24579
+ },
24338
24580
  "allow_merge_commit": {
24339
24581
  "description": "Whether to allow merge commits for pull requests.",
24340
24582
  "default": true,
@@ -32372,6 +32614,40 @@
32372
32614
  "use_squash_pr_title_as_default": {
32373
32615
  "type": "boolean"
32374
32616
  },
32617
+ "squash_merge_commit_title": {
32618
+ "type": "string",
32619
+ "enum": [
32620
+ "PR_TITLE",
32621
+ "COMMIT_OR_PR_TITLE"
32622
+ ],
32623
+ "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)."
32624
+ },
32625
+ "squash_merge_commit_message": {
32626
+ "type": "string",
32627
+ "enum": [
32628
+ "PR_BODY",
32629
+ "COMMIT_MESSAGES",
32630
+ "BLANK"
32631
+ ],
32632
+ "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."
32633
+ },
32634
+ "merge_commit_title": {
32635
+ "type": "string",
32636
+ "enum": [
32637
+ "PR_TITLE",
32638
+ "MERGE_MESSAGE"
32639
+ ],
32640
+ "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)."
32641
+ },
32642
+ "merge_commit_message": {
32643
+ "type": "string",
32644
+ "enum": [
32645
+ "PR_BODY",
32646
+ "PR_TITLE",
32647
+ "BLANK"
32648
+ ],
32649
+ "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."
32650
+ },
32375
32651
  "allow_merge_commit": {
32376
32652
  "type": "boolean"
32377
32653
  },
@@ -32415,6 +32691,40 @@
32415
32691
  "description": "Whether a squash merge commit can use the pull request title as default.",
32416
32692
  "default": false
32417
32693
  },
32694
+ "squash_merge_commit_title": {
32695
+ "type": "string",
32696
+ "enum": [
32697
+ "PR_TITLE",
32698
+ "COMMIT_OR_PR_TITLE"
32699
+ ],
32700
+ "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)."
32701
+ },
32702
+ "squash_merge_commit_message": {
32703
+ "type": "string",
32704
+ "enum": [
32705
+ "PR_BODY",
32706
+ "COMMIT_MESSAGES",
32707
+ "BLANK"
32708
+ ],
32709
+ "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."
32710
+ },
32711
+ "merge_commit_title": {
32712
+ "type": "string",
32713
+ "enum": [
32714
+ "PR_TITLE",
32715
+ "MERGE_MESSAGE"
32716
+ ],
32717
+ "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)."
32718
+ },
32719
+ "merge_commit_message": {
32720
+ "type": "string",
32721
+ "enum": [
32722
+ "PR_BODY",
32723
+ "PR_TITLE",
32724
+ "BLANK"
32725
+ ],
32726
+ "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."
32727
+ },
32418
32728
  "allow_merge_commit": {
32419
32729
  "description": "Whether to allow merge commits for pull requests.",
32420
32730
  "default": true,