@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.
- package/generated/api.github.com.deref.json +8561 -1
- package/generated/api.github.com.json +322 -10
- package/generated/ghes-3.2-diff-to-api.github.com.deref.json +1 -1
- package/generated/ghes-3.2-diff-to-api.github.com.json +1 -1
- package/generated/ghes-3.2-diff-to-ghes-3.3.deref.json +103 -1
- package/generated/ghes-3.2-diff-to-ghes-3.3.json +103 -1
- package/generated/ghes-3.2.deref.json +140 -1
- package/generated/ghes-3.2.json +137 -10
- package/generated/ghes-3.3-diff-to-ghes-3.4.deref.json +1 -1
- package/generated/ghes-3.3-diff-to-ghes-3.4.json +1 -1
- package/generated/ghes-3.3.deref.json +140 -1
- package/generated/ghes-3.3.json +137 -10
- package/generated/ghes-3.4-diff-to-ghes-3.5.deref.json +1 -1
- package/generated/ghes-3.4-diff-to-ghes-3.5.json +1 -1
- package/generated/ghes-3.4.deref.json +141 -1
- package/generated/ghes-3.4.json +138 -10
- package/generated/ghes-3.5-anicca-diff-to-ghes-3.6.deref.json +764 -0
- package/generated/ghes-3.5-diff-to-api.github.com.deref.json +1 -1
- package/generated/ghes-3.5-diff-to-api.github.com.json +1 -1
- package/generated/ghes-3.5-diff-to-ghes-3.6.deref.json +125 -1
- package/generated/ghes-3.5-diff-to-ghes-3.6.json +124 -4
- package/generated/ghes-3.5.deref.json +151 -1
- package/generated/ghes-3.5.json +148 -10
- package/generated/ghes-3.6-diff-to-api.github.com.deref.json +311 -1
- package/generated/ghes-3.6-diff-to-api.github.com.json +175 -1
- package/generated/ghes-3.6.deref.json +6997 -1
- package/generated/ghes-3.6.json +322 -10
- package/generated/github.ae-anicca-diff-to-api.github.com.deref.json +701 -3
- package/generated/github.ae-diff-to-api.github.com.deref.json +115 -1
- package/generated/github.ae-diff-to-api.github.com.json +114 -4
- package/generated/github.ae.deref.json +129 -1
- package/generated/github.ae.json +126 -10
- package/package.json +1 -1
package/generated/ghes-3.6.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "7.
|
|
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": {
|
|
@@ -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": {
|
|
@@ -16033,6 +16034,40 @@
|
|
|
16033
16034
|
"type": "boolean",
|
|
16034
16035
|
"description": "Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message.",
|
|
16035
16036
|
"default": false
|
|
16037
|
+
},
|
|
16038
|
+
"squash_merge_commit_title": {
|
|
16039
|
+
"type": "string",
|
|
16040
|
+
"enum": [
|
|
16041
|
+
"PR_TITLE",
|
|
16042
|
+
"COMMIT_OR_PR_TITLE"
|
|
16043
|
+
],
|
|
16044
|
+
"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)."
|
|
16045
|
+
},
|
|
16046
|
+
"squash_merge_commit_message": {
|
|
16047
|
+
"type": "string",
|
|
16048
|
+
"enum": [
|
|
16049
|
+
"PR_BODY",
|
|
16050
|
+
"COMMIT_MESSAGES",
|
|
16051
|
+
"BLANK"
|
|
16052
|
+
],
|
|
16053
|
+
"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."
|
|
16054
|
+
},
|
|
16055
|
+
"merge_commit_title": {
|
|
16056
|
+
"type": "string",
|
|
16057
|
+
"enum": [
|
|
16058
|
+
"PR_TITLE",
|
|
16059
|
+
"MERGE_MESSAGE"
|
|
16060
|
+
],
|
|
16061
|
+
"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)."
|
|
16062
|
+
},
|
|
16063
|
+
"merge_commit_message": {
|
|
16064
|
+
"type": "string",
|
|
16065
|
+
"enum": [
|
|
16066
|
+
"PR_BODY",
|
|
16067
|
+
"PR_TITLE",
|
|
16068
|
+
"BLANK"
|
|
16069
|
+
],
|
|
16070
|
+
"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
16071
|
}
|
|
16037
16072
|
},
|
|
16038
16073
|
"required": [
|
|
@@ -20226,6 +20261,40 @@
|
|
|
20226
20261
|
"description": "Either `true` to allow squash-merge commits to use pull request title, or `false` to use commit message.",
|
|
20227
20262
|
"default": false
|
|
20228
20263
|
},
|
|
20264
|
+
"squash_merge_commit_title": {
|
|
20265
|
+
"type": "string",
|
|
20266
|
+
"enum": [
|
|
20267
|
+
"PR_TITLE",
|
|
20268
|
+
"COMMIT_OR_PR_TITLE"
|
|
20269
|
+
],
|
|
20270
|
+
"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)."
|
|
20271
|
+
},
|
|
20272
|
+
"squash_merge_commit_message": {
|
|
20273
|
+
"type": "string",
|
|
20274
|
+
"enum": [
|
|
20275
|
+
"PR_BODY",
|
|
20276
|
+
"COMMIT_MESSAGES",
|
|
20277
|
+
"BLANK"
|
|
20278
|
+
],
|
|
20279
|
+
"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."
|
|
20280
|
+
},
|
|
20281
|
+
"merge_commit_title": {
|
|
20282
|
+
"type": "string",
|
|
20283
|
+
"enum": [
|
|
20284
|
+
"PR_TITLE",
|
|
20285
|
+
"MERGE_MESSAGE"
|
|
20286
|
+
],
|
|
20287
|
+
"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)."
|
|
20288
|
+
},
|
|
20289
|
+
"merge_commit_message": {
|
|
20290
|
+
"type": "string",
|
|
20291
|
+
"enum": [
|
|
20292
|
+
"PR_BODY",
|
|
20293
|
+
"PR_TITLE",
|
|
20294
|
+
"BLANK"
|
|
20295
|
+
],
|
|
20296
|
+
"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."
|
|
20297
|
+
},
|
|
20229
20298
|
"archived": {
|
|
20230
20299
|
"type": "boolean",
|
|
20231
20300
|
"description": "`true` to archive this repository. **Note**: You cannot unarchive repositories through the API.",
|
|
@@ -20847,6 +20916,11 @@
|
|
|
20847
20916
|
"description": "Whether to enable debug logging for the re-run."
|
|
20848
20917
|
}
|
|
20849
20918
|
}
|
|
20919
|
+
},
|
|
20920
|
+
"examples": {
|
|
20921
|
+
"default": {
|
|
20922
|
+
"value": null
|
|
20923
|
+
}
|
|
20850
20924
|
}
|
|
20851
20925
|
}
|
|
20852
20926
|
}
|
|
@@ -22384,9 +22458,12 @@
|
|
|
22384
22458
|
"content": {
|
|
22385
22459
|
"application/json": {
|
|
22386
22460
|
"schema": {
|
|
22387
|
-
"
|
|
22388
|
-
|
|
22389
|
-
|
|
22461
|
+
"$ref": "#/components/schemas/empty-object"
|
|
22462
|
+
},
|
|
22463
|
+
"examples": {
|
|
22464
|
+
"default": {
|
|
22465
|
+
"value": null
|
|
22466
|
+
}
|
|
22390
22467
|
}
|
|
22391
22468
|
}
|
|
22392
22469
|
}
|
|
@@ -22691,6 +22768,17 @@
|
|
|
22691
22768
|
"state",
|
|
22692
22769
|
"comment"
|
|
22693
22770
|
]
|
|
22771
|
+
},
|
|
22772
|
+
"examples": {
|
|
22773
|
+
"default": {
|
|
22774
|
+
"value": {
|
|
22775
|
+
"environment_ids": [
|
|
22776
|
+
161171787
|
|
22777
|
+
],
|
|
22778
|
+
"state": "approved",
|
|
22779
|
+
"comment": "Ship it!"
|
|
22780
|
+
}
|
|
22781
|
+
}
|
|
22694
22782
|
}
|
|
22695
22783
|
}
|
|
22696
22784
|
}
|
|
@@ -22761,6 +22849,11 @@
|
|
|
22761
22849
|
"description": "Whether to enable debug logging for the re-run."
|
|
22762
22850
|
}
|
|
22763
22851
|
}
|
|
22852
|
+
},
|
|
22853
|
+
"examples": {
|
|
22854
|
+
"default": {
|
|
22855
|
+
"value": null
|
|
22856
|
+
}
|
|
22764
22857
|
}
|
|
22765
22858
|
}
|
|
22766
22859
|
}
|
|
@@ -22771,9 +22864,12 @@
|
|
|
22771
22864
|
"content": {
|
|
22772
22865
|
"application/json": {
|
|
22773
22866
|
"schema": {
|
|
22774
|
-
"
|
|
22775
|
-
|
|
22776
|
-
|
|
22867
|
+
"$ref": "#/components/schemas/empty-object"
|
|
22868
|
+
},
|
|
22869
|
+
"examples": {
|
|
22870
|
+
"default": {
|
|
22871
|
+
"value": null
|
|
22872
|
+
}
|
|
22777
22873
|
}
|
|
22778
22874
|
}
|
|
22779
22875
|
}
|
|
@@ -22825,6 +22921,11 @@
|
|
|
22825
22921
|
"description": "Whether to enable debug logging for the re-run."
|
|
22826
22922
|
}
|
|
22827
22923
|
}
|
|
22924
|
+
},
|
|
22925
|
+
"examples": {
|
|
22926
|
+
"default": {
|
|
22927
|
+
"value": null
|
|
22928
|
+
}
|
|
22828
22929
|
}
|
|
22829
22930
|
}
|
|
22830
22931
|
}
|
|
@@ -23078,9 +23179,12 @@
|
|
|
23078
23179
|
"content": {
|
|
23079
23180
|
"application/json": {
|
|
23080
23181
|
"schema": {
|
|
23081
|
-
"
|
|
23082
|
-
|
|
23083
|
-
|
|
23182
|
+
"$ref": "#/components/schemas/empty-object"
|
|
23183
|
+
},
|
|
23184
|
+
"examples": {
|
|
23185
|
+
"default": {
|
|
23186
|
+
"value": null
|
|
23187
|
+
}
|
|
23084
23188
|
}
|
|
23085
23189
|
}
|
|
23086
23190
|
}
|
|
@@ -51573,6 +51677,40 @@
|
|
|
51573
51677
|
"type": "boolean",
|
|
51574
51678
|
"example": false
|
|
51575
51679
|
},
|
|
51680
|
+
"squash_merge_commit_title": {
|
|
51681
|
+
"type": "string",
|
|
51682
|
+
"enum": [
|
|
51683
|
+
"PR_TITLE",
|
|
51684
|
+
"COMMIT_OR_PR_TITLE"
|
|
51685
|
+
],
|
|
51686
|
+
"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)."
|
|
51687
|
+
},
|
|
51688
|
+
"squash_merge_commit_message": {
|
|
51689
|
+
"type": "string",
|
|
51690
|
+
"enum": [
|
|
51691
|
+
"PR_BODY",
|
|
51692
|
+
"COMMIT_MESSAGES",
|
|
51693
|
+
"BLANK"
|
|
51694
|
+
],
|
|
51695
|
+
"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."
|
|
51696
|
+
},
|
|
51697
|
+
"merge_commit_title": {
|
|
51698
|
+
"type": "string",
|
|
51699
|
+
"enum": [
|
|
51700
|
+
"PR_TITLE",
|
|
51701
|
+
"MERGE_MESSAGE"
|
|
51702
|
+
],
|
|
51703
|
+
"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)."
|
|
51704
|
+
},
|
|
51705
|
+
"merge_commit_message": {
|
|
51706
|
+
"type": "string",
|
|
51707
|
+
"enum": [
|
|
51708
|
+
"PR_BODY",
|
|
51709
|
+
"PR_TITLE",
|
|
51710
|
+
"BLANK"
|
|
51711
|
+
],
|
|
51712
|
+
"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."
|
|
51713
|
+
},
|
|
51576
51714
|
"has_downloads": {
|
|
51577
51715
|
"description": "Whether downloads are enabled.",
|
|
51578
51716
|
"default": true,
|
|
@@ -60304,6 +60442,40 @@
|
|
|
60304
60442
|
"use_squash_pr_title_as_default": {
|
|
60305
60443
|
"type": "boolean"
|
|
60306
60444
|
},
|
|
60445
|
+
"squash_merge_commit_title": {
|
|
60446
|
+
"type": "string",
|
|
60447
|
+
"enum": [
|
|
60448
|
+
"PR_TITLE",
|
|
60449
|
+
"COMMIT_OR_PR_TITLE"
|
|
60450
|
+
],
|
|
60451
|
+
"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)."
|
|
60452
|
+
},
|
|
60453
|
+
"squash_merge_commit_message": {
|
|
60454
|
+
"type": "string",
|
|
60455
|
+
"enum": [
|
|
60456
|
+
"PR_BODY",
|
|
60457
|
+
"COMMIT_MESSAGES",
|
|
60458
|
+
"BLANK"
|
|
60459
|
+
],
|
|
60460
|
+
"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."
|
|
60461
|
+
},
|
|
60462
|
+
"merge_commit_title": {
|
|
60463
|
+
"type": "string",
|
|
60464
|
+
"enum": [
|
|
60465
|
+
"PR_TITLE",
|
|
60466
|
+
"MERGE_MESSAGE"
|
|
60467
|
+
],
|
|
60468
|
+
"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)."
|
|
60469
|
+
},
|
|
60470
|
+
"merge_commit_message": {
|
|
60471
|
+
"type": "string",
|
|
60472
|
+
"enum": [
|
|
60473
|
+
"PR_BODY",
|
|
60474
|
+
"PR_TITLE",
|
|
60475
|
+
"BLANK"
|
|
60476
|
+
],
|
|
60477
|
+
"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."
|
|
60478
|
+
},
|
|
60307
60479
|
"allow_merge_commit": {
|
|
60308
60480
|
"type": "boolean"
|
|
60309
60481
|
},
|
|
@@ -60347,6 +60519,40 @@
|
|
|
60347
60519
|
"description": "Whether a squash merge commit can use the pull request title as default.",
|
|
60348
60520
|
"default": false
|
|
60349
60521
|
},
|
|
60522
|
+
"squash_merge_commit_title": {
|
|
60523
|
+
"type": "string",
|
|
60524
|
+
"enum": [
|
|
60525
|
+
"PR_TITLE",
|
|
60526
|
+
"COMMIT_OR_PR_TITLE"
|
|
60527
|
+
],
|
|
60528
|
+
"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)."
|
|
60529
|
+
},
|
|
60530
|
+
"squash_merge_commit_message": {
|
|
60531
|
+
"type": "string",
|
|
60532
|
+
"enum": [
|
|
60533
|
+
"PR_BODY",
|
|
60534
|
+
"COMMIT_MESSAGES",
|
|
60535
|
+
"BLANK"
|
|
60536
|
+
],
|
|
60537
|
+
"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."
|
|
60538
|
+
},
|
|
60539
|
+
"merge_commit_title": {
|
|
60540
|
+
"type": "string",
|
|
60541
|
+
"enum": [
|
|
60542
|
+
"PR_TITLE",
|
|
60543
|
+
"MERGE_MESSAGE"
|
|
60544
|
+
],
|
|
60545
|
+
"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)."
|
|
60546
|
+
},
|
|
60547
|
+
"merge_commit_message": {
|
|
60548
|
+
"type": "string",
|
|
60549
|
+
"enum": [
|
|
60550
|
+
"PR_BODY",
|
|
60551
|
+
"PR_TITLE",
|
|
60552
|
+
"BLANK"
|
|
60553
|
+
],
|
|
60554
|
+
"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."
|
|
60555
|
+
},
|
|
60350
60556
|
"allow_merge_commit": {
|
|
60351
60557
|
"description": "Whether to allow merge commits for pull requests.",
|
|
60352
60558
|
"default": true,
|
|
@@ -64329,6 +64535,40 @@
|
|
|
64329
64535
|
"use_squash_pr_title_as_default": {
|
|
64330
64536
|
"type": "boolean"
|
|
64331
64537
|
},
|
|
64538
|
+
"squash_merge_commit_title": {
|
|
64539
|
+
"type": "string",
|
|
64540
|
+
"enum": [
|
|
64541
|
+
"PR_TITLE",
|
|
64542
|
+
"COMMIT_OR_PR_TITLE"
|
|
64543
|
+
],
|
|
64544
|
+
"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)."
|
|
64545
|
+
},
|
|
64546
|
+
"squash_merge_commit_message": {
|
|
64547
|
+
"type": "string",
|
|
64548
|
+
"enum": [
|
|
64549
|
+
"PR_BODY",
|
|
64550
|
+
"COMMIT_MESSAGES",
|
|
64551
|
+
"BLANK"
|
|
64552
|
+
],
|
|
64553
|
+
"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."
|
|
64554
|
+
},
|
|
64555
|
+
"merge_commit_title": {
|
|
64556
|
+
"type": "string",
|
|
64557
|
+
"enum": [
|
|
64558
|
+
"PR_TITLE",
|
|
64559
|
+
"MERGE_MESSAGE"
|
|
64560
|
+
],
|
|
64561
|
+
"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)."
|
|
64562
|
+
},
|
|
64563
|
+
"merge_commit_message": {
|
|
64564
|
+
"type": "string",
|
|
64565
|
+
"enum": [
|
|
64566
|
+
"PR_BODY",
|
|
64567
|
+
"PR_TITLE",
|
|
64568
|
+
"BLANK"
|
|
64569
|
+
],
|
|
64570
|
+
"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."
|
|
64571
|
+
},
|
|
64332
64572
|
"allow_merge_commit": {
|
|
64333
64573
|
"type": "boolean"
|
|
64334
64574
|
},
|
|
@@ -64372,6 +64612,40 @@
|
|
|
64372
64612
|
"description": "Whether a squash merge commit can use the pull request title as default.",
|
|
64373
64613
|
"default": false
|
|
64374
64614
|
},
|
|
64615
|
+
"squash_merge_commit_title": {
|
|
64616
|
+
"type": "string",
|
|
64617
|
+
"enum": [
|
|
64618
|
+
"PR_TITLE",
|
|
64619
|
+
"COMMIT_OR_PR_TITLE"
|
|
64620
|
+
],
|
|
64621
|
+
"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)."
|
|
64622
|
+
},
|
|
64623
|
+
"squash_merge_commit_message": {
|
|
64624
|
+
"type": "string",
|
|
64625
|
+
"enum": [
|
|
64626
|
+
"PR_BODY",
|
|
64627
|
+
"COMMIT_MESSAGES",
|
|
64628
|
+
"BLANK"
|
|
64629
|
+
],
|
|
64630
|
+
"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."
|
|
64631
|
+
},
|
|
64632
|
+
"merge_commit_title": {
|
|
64633
|
+
"type": "string",
|
|
64634
|
+
"enum": [
|
|
64635
|
+
"PR_TITLE",
|
|
64636
|
+
"MERGE_MESSAGE"
|
|
64637
|
+
],
|
|
64638
|
+
"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)."
|
|
64639
|
+
},
|
|
64640
|
+
"merge_commit_message": {
|
|
64641
|
+
"type": "string",
|
|
64642
|
+
"enum": [
|
|
64643
|
+
"PR_BODY",
|
|
64644
|
+
"PR_TITLE",
|
|
64645
|
+
"BLANK"
|
|
64646
|
+
],
|
|
64647
|
+
"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."
|
|
64648
|
+
},
|
|
64375
64649
|
"allow_merge_commit": {
|
|
64376
64650
|
"description": "Whether to allow merge commits for pull requests.",
|
|
64377
64651
|
"default": true,
|
|
@@ -68028,6 +68302,44 @@
|
|
|
68028
68302
|
"type": "boolean",
|
|
68029
68303
|
"example": false
|
|
68030
68304
|
},
|
|
68305
|
+
"squash_merge_commit_title": {
|
|
68306
|
+
"type": "string",
|
|
68307
|
+
"example": "PR_TITLE",
|
|
68308
|
+
"enum": [
|
|
68309
|
+
"PR_TITLE",
|
|
68310
|
+
"COMMIT_OR_PR_TITLE"
|
|
68311
|
+
],
|
|
68312
|
+
"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)."
|
|
68313
|
+
},
|
|
68314
|
+
"squash_merge_commit_message": {
|
|
68315
|
+
"type": "string",
|
|
68316
|
+
"example": "PR_BODY",
|
|
68317
|
+
"enum": [
|
|
68318
|
+
"PR_BODY",
|
|
68319
|
+
"COMMIT_MESSAGES",
|
|
68320
|
+
"BLANK"
|
|
68321
|
+
],
|
|
68322
|
+
"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."
|
|
68323
|
+
},
|
|
68324
|
+
"merge_commit_title": {
|
|
68325
|
+
"type": "string",
|
|
68326
|
+
"example": "PR_TITLE",
|
|
68327
|
+
"enum": [
|
|
68328
|
+
"PR_TITLE",
|
|
68329
|
+
"MERGE_MESSAGE"
|
|
68330
|
+
],
|
|
68331
|
+
"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)."
|
|
68332
|
+
},
|
|
68333
|
+
"merge_commit_message": {
|
|
68334
|
+
"type": "string",
|
|
68335
|
+
"example": "PR_BODY",
|
|
68336
|
+
"enum": [
|
|
68337
|
+
"PR_BODY",
|
|
68338
|
+
"PR_TITLE",
|
|
68339
|
+
"BLANK"
|
|
68340
|
+
],
|
|
68341
|
+
"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."
|
|
68342
|
+
},
|
|
68031
68343
|
"allow_forking": {
|
|
68032
68344
|
"type": "boolean",
|
|
68033
68345
|
"example": true
|