Skip to content

Commit eb42fd3

Browse files
octokitbotgr2m
authored andcommittedJan 10, 2020
feat: DUPLICATE for reporting content, Repository#deleteBranchOnMerge (#247)
1 parent 955bb37 commit eb42fd3

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed
 

‎schema.graphql

+10
Original file line numberDiff line numberDiff line change
@@ -25959,6 +25959,11 @@ enum ReportedContentClassifiers {
2595925959
"""
2596025960
ABUSE
2596125961

25962+
"""
25963+
A duplicated piece of content
25964+
"""
25965+
DUPLICATE
25966+
2596225967
"""
2596325968
An irrelevant piece of content
2596425969
"""
@@ -26119,6 +26124,11 @@ type Repository implements Node & ProjectOwner & RegistryPackageOwner & Registry
2611926124
"""
2612026125
defaultBranchRef: Ref
2612126126

26127+
"""
26128+
Whether or not branches are automatically deleted when merged in this repository.
26129+
"""
26130+
deleteBranchOnMerge: Boolean!
26131+
2612226132
"""
2612326133
A list of deploy keys that are on this repository.
2612426134
"""

‎schema.json

+22
Original file line numberDiff line numberDiff line change
@@ -6146,6 +6146,22 @@
61466146
"isDeprecated": false,
61476147
"deprecationReason": null
61486148
},
6149+
{
6150+
"name": "deleteBranchOnMerge",
6151+
"description": "Whether or not branches are automatically deleted when merged in this repository.",
6152+
"args": [],
6153+
"type": {
6154+
"kind": "NON_NULL",
6155+
"name": null,
6156+
"ofType": {
6157+
"kind": "SCALAR",
6158+
"name": "Boolean",
6159+
"ofType": null
6160+
}
6161+
},
6162+
"isDeprecated": false,
6163+
"deprecationReason": null
6164+
},
61496165
{
61506166
"name": "deployKeys",
61516167
"description": "A list of deploy keys that are on this repository.",
@@ -86907,6 +86923,12 @@
8690786923
"isDeprecated": false,
8690886924
"deprecationReason": null
8690986925
},
86926+
{
86927+
"name": "DUPLICATE",
86928+
"description": "A duplicated piece of content",
86929+
"isDeprecated": false,
86930+
"deprecationReason": null
86931+
},
8691086932
{
8691186933
"name": "RESOLVED",
8691286934
"description": "The content has been resolved",

0 commit comments

Comments
 (0)
Please sign in to comment.