1
0
mirror of synced 2026-01-07 09:01:31 -05:00

Merge pull request #31370 from github/repo-sync

Repo sync
This commit is contained in:
docs-bot
2024-01-31 10:59:19 -06:00
committed by GitHub
7 changed files with 576 additions and 0 deletions

View File

@@ -28246,6 +28246,36 @@ enum ProjectTemplate {
BUG_TRIAGE
}
"""
A property that must match
"""
type PropertyTargetDefinition {
"""
The name of the property
"""
name: String!
"""
The values to match for
"""
propertyValues: [String!]!
}
"""
A property that must match
"""
input PropertyTargetDefinitionInput {
"""
The name of the property
"""
name: String!
"""
The values to match for
"""
propertyValues: [String!]!
}
"""
A user's public key.
"""
@@ -38530,6 +38560,36 @@ enum RepositoryPrivacy {
PUBLIC
}
"""
Parameters to be used for the repository_property condition
"""
type RepositoryPropertyConditionTarget {
"""
Array of repository properties that must not match.
"""
exclude: [PropertyTargetDefinition!]!
"""
Array of repository properties that must match
"""
include: [PropertyTargetDefinition!]!
}
"""
Parameters to be used for the repository_property condition
"""
input RepositoryPropertyConditionTargetInput {
"""
Array of repository properties that must not match.
"""
exclude: [PropertyTargetDefinitionInput!]!
"""
Array of repository properties that must match
"""
include: [PropertyTargetDefinitionInput!]!
}
"""
A repository rule.
"""
@@ -38573,6 +38633,11 @@ type RepositoryRuleConditions {
Configuration for the repository_name condition
"""
repositoryName: RepositoryNameConditionTarget
"""
Configuration for the repository_property condition
"""
repositoryProperty: RepositoryPropertyConditionTarget
}
"""
@@ -38593,6 +38658,11 @@ input RepositoryRuleConditionsInput {
Configuration for the repository_name condition
"""
repositoryName: RepositoryNameConditionTargetInput
"""
Configuration for the repository_property condition
"""
repositoryProperty: RepositoryPropertyConditionTargetInput
}
"""

View File

@@ -34916,6 +34916,36 @@ enum ProjectV2WorkflowsOrderField {
UPDATED_AT
}
"""
A property that must match
"""
type PropertyTargetDefinition {
"""
The name of the property
"""
name: String!
"""
The values to match for
"""
propertyValues: [String!]!
}
"""
A property that must match
"""
input PropertyTargetDefinitionInput {
"""
The name of the property
"""
name: String!
"""
The values to match for
"""
propertyValues: [String!]!
}
"""
A user's public key.
"""
@@ -45911,6 +45941,36 @@ enum RepositoryPrivacy {
PUBLIC
}
"""
Parameters to be used for the repository_property condition
"""
type RepositoryPropertyConditionTarget {
"""
Array of repository properties that must not match.
"""
exclude: [PropertyTargetDefinition!]!
"""
Array of repository properties that must match
"""
include: [PropertyTargetDefinition!]!
}
"""
Parameters to be used for the repository_property condition
"""
input RepositoryPropertyConditionTargetInput {
"""
Array of repository properties that must not match.
"""
exclude: [PropertyTargetDefinitionInput!]!
"""
Array of repository properties that must match
"""
include: [PropertyTargetDefinitionInput!]!
}
"""
A repository rule.
"""
@@ -45954,6 +46014,11 @@ type RepositoryRuleConditions {
Configuration for the repository_name condition
"""
repositoryName: RepositoryNameConditionTarget
"""
Configuration for the repository_property condition
"""
repositoryProperty: RepositoryPropertyConditionTarget
}
"""
@@ -45974,6 +46039,11 @@ input RepositoryRuleConditionsInput {
Configuration for the repository_name condition
"""
repositoryName: RepositoryNameConditionTargetInput
"""
Configuration for the repository_property condition
"""
repositoryProperty: RepositoryPropertyConditionTargetInput
}
"""

View File

@@ -34916,6 +34916,36 @@ enum ProjectV2WorkflowsOrderField {
UPDATED_AT
}
"""
A property that must match
"""
type PropertyTargetDefinition {
"""
The name of the property
"""
name: String!
"""
The values to match for
"""
propertyValues: [String!]!
}
"""
A property that must match
"""
input PropertyTargetDefinitionInput {
"""
The name of the property
"""
name: String!
"""
The values to match for
"""
propertyValues: [String!]!
}
"""
A user's public key.
"""
@@ -45911,6 +45941,36 @@ enum RepositoryPrivacy {
PUBLIC
}
"""
Parameters to be used for the repository_property condition
"""
type RepositoryPropertyConditionTarget {
"""
Array of repository properties that must not match.
"""
exclude: [PropertyTargetDefinition!]!
"""
Array of repository properties that must match
"""
include: [PropertyTargetDefinition!]!
}
"""
Parameters to be used for the repository_property condition
"""
input RepositoryPropertyConditionTargetInput {
"""
Array of repository properties that must not match.
"""
exclude: [PropertyTargetDefinitionInput!]!
"""
Array of repository properties that must match
"""
include: [PropertyTargetDefinitionInput!]!
}
"""
A repository rule.
"""
@@ -45954,6 +46014,11 @@ type RepositoryRuleConditions {
Configuration for the repository_name condition
"""
repositoryName: RepositoryNameConditionTarget
"""
Configuration for the repository_property condition
"""
repositoryProperty: RepositoryPropertyConditionTarget
}
"""
@@ -45974,6 +46039,11 @@ input RepositoryRuleConditionsInput {
Configuration for the repository_name condition
"""
repositoryName: RepositoryNameConditionTargetInput
"""
Configuration for the repository_property condition
"""
repositoryProperty: RepositoryPropertyConditionTargetInput
}
"""

View File

@@ -1,4 +1,22 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"<p>Type <code>PropertyTargetDefinition</code> was added</p>",
"<p>Type <code>PropertyTargetDefinitionInput</code> was added</p>",
"<p>Type <code>RepositoryPropertyConditionTarget</code> was added</p>",
"<p>Type <code>RepositoryPropertyConditionTargetInput</code> was added</p>",
"<p>Field <code>repositoryProperty</code> was added to object type <code>RepositoryRuleConditions</code></p>",
"<p>Input field <code>repositoryProperty</code> of type <code>RepositoryPropertyConditionTargetInput</code> was added to input object type <code>RepositoryRuleConditionsInput</code></p>"
]
}
],
"previewChanges": [],
"upcomingChanges": [],
"date": "2024-01-31"
},
{
"schemaChanges": [
{

View File

@@ -48591,6 +48591,31 @@
}
]
},
{
"name": "PropertyTargetDefinition",
"kind": "objects",
"id": "propertytargetdefinition",
"href": "/graphql/reference/objects#propertytargetdefinition",
"description": "<p>A property that must match.</p>",
"fields": [
{
"name": "name",
"description": "<p>The name of the property.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "propertyValues",
"description": "<p>The values to match for.</p>",
"type": "[String!]!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
]
},
{
"name": "PublicKey",
"kind": "objects",
@@ -63296,6 +63321,31 @@
}
]
},
{
"name": "RepositoryPropertyConditionTarget",
"kind": "objects",
"id": "repositorypropertyconditiontarget",
"href": "/graphql/reference/objects#repositorypropertyconditiontarget",
"description": "<p>Parameters to be used for the repository_property condition.</p>",
"fields": [
{
"name": "exclude",
"description": "<p>Array of repository properties that must not match.</p>",
"type": "[PropertyTargetDefinition!]!",
"id": "propertytargetdefinition",
"kind": "objects",
"href": "/graphql/reference/objects#propertytargetdefinition"
},
{
"name": "include",
"description": "<p>Array of repository properties that must match.</p>",
"type": "[PropertyTargetDefinition!]!",
"id": "propertytargetdefinition",
"kind": "objects",
"href": "/graphql/reference/objects#propertytargetdefinition"
}
]
},
{
"name": "RepositoryRule",
"kind": "objects",
@@ -63374,6 +63424,14 @@
"id": "repositorynameconditiontarget",
"kind": "objects",
"href": "/graphql/reference/objects#repositorynameconditiontarget"
},
{
"name": "repositoryProperty",
"description": "<p>Configuration for the repository_property condition.</p>",
"type": "RepositoryPropertyConditionTarget",
"id": "repositorypropertyconditiontarget",
"kind": "objects",
"href": "/graphql/reference/objects#repositorypropertyconditiontarget"
}
]
},
@@ -97549,6 +97607,31 @@
}
]
},
{
"name": "PropertyTargetDefinitionInput",
"kind": "inputObjects",
"id": "propertytargetdefinitioninput",
"href": "/graphql/reference/input-objects#propertytargetdefinitioninput",
"description": "<p>A property that must match.</p>",
"inputFields": [
{
"name": "name",
"description": "<p>The name of the property.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "propertyValues",
"description": "<p>The values to match for.</p>",
"type": "[String!]!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
]
},
{
"name": "PublishSponsorsTierInput",
"kind": "inputObjects",
@@ -98458,6 +98541,31 @@
}
]
},
{
"name": "RepositoryPropertyConditionTargetInput",
"kind": "inputObjects",
"id": "repositorypropertyconditiontargetinput",
"href": "/graphql/reference/input-objects#repositorypropertyconditiontargetinput",
"description": "<p>Parameters to be used for the repository_property condition.</p>",
"inputFields": [
{
"name": "exclude",
"description": "<p>Array of repository properties that must not match.</p>",
"type": "[PropertyTargetDefinitionInput!]!",
"id": "propertytargetdefinitioninput",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#propertytargetdefinitioninput"
},
{
"name": "include",
"description": "<p>Array of repository properties that must match.</p>",
"type": "[PropertyTargetDefinitionInput!]!",
"id": "propertytargetdefinitioninput",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#propertytargetdefinitioninput"
}
]
},
{
"name": "RepositoryRuleConditionsInput",
"kind": "inputObjects",
@@ -98488,6 +98596,14 @@
"id": "repositorynameconditiontargetinput",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#repositorynameconditiontargetinput"
},
{
"name": "repositoryProperty",
"description": "<p>Configuration for the repository_property condition.</p>",
"type": "RepositoryPropertyConditionTargetInput",
"id": "repositorypropertyconditiontargetinput",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#repositorypropertyconditiontargetinput"
}
]
},

View File

@@ -39414,6 +39414,31 @@
}
]
},
{
"name": "PropertyTargetDefinition",
"kind": "objects",
"id": "propertytargetdefinition",
"href": "/graphql/reference/objects#propertytargetdefinition",
"description": "<p>A property that must match.</p>",
"fields": [
{
"name": "name",
"description": "<p>The name of the property.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "propertyValues",
"description": "<p>The values to match for.</p>",
"type": "[String!]!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
]
},
{
"name": "PublicKey",
"kind": "objects",
@@ -53682,6 +53707,31 @@
}
]
},
{
"name": "RepositoryPropertyConditionTarget",
"kind": "objects",
"id": "repositorypropertyconditiontarget",
"href": "/graphql/reference/objects#repositorypropertyconditiontarget",
"description": "<p>Parameters to be used for the repository_property condition.</p>",
"fields": [
{
"name": "exclude",
"description": "<p>Array of repository properties that must not match.</p>",
"type": "[PropertyTargetDefinition!]!",
"id": "propertytargetdefinition",
"kind": "objects",
"href": "/graphql/reference/objects#propertytargetdefinition"
},
{
"name": "include",
"description": "<p>Array of repository properties that must match.</p>",
"type": "[PropertyTargetDefinition!]!",
"id": "propertytargetdefinition",
"kind": "objects",
"href": "/graphql/reference/objects#propertytargetdefinition"
}
]
},
{
"name": "RepositoryRule",
"kind": "objects",
@@ -53760,6 +53810,14 @@
"id": "repositorynameconditiontarget",
"kind": "objects",
"href": "/graphql/reference/objects#repositorynameconditiontarget"
},
{
"name": "repositoryProperty",
"description": "<p>Configuration for the repository_property condition.</p>",
"type": "RepositoryPropertyConditionTarget",
"id": "repositorypropertyconditiontarget",
"kind": "objects",
"href": "/graphql/reference/objects#repositorypropertyconditiontarget"
}
]
},
@@ -80166,6 +80224,31 @@
}
]
},
{
"name": "PropertyTargetDefinitionInput",
"kind": "inputObjects",
"id": "propertytargetdefinitioninput",
"href": "/graphql/reference/input-objects#propertytargetdefinitioninput",
"description": "<p>A property that must match.</p>",
"inputFields": [
{
"name": "name",
"description": "<p>The name of the property.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "propertyValues",
"description": "<p>The values to match for.</p>",
"type": "[String!]!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
]
},
{
"name": "PullRequestOrder",
"kind": "inputObjects",
@@ -80867,6 +80950,31 @@
}
]
},
{
"name": "RepositoryPropertyConditionTargetInput",
"kind": "inputObjects",
"id": "repositorypropertyconditiontargetinput",
"href": "/graphql/reference/input-objects#repositorypropertyconditiontargetinput",
"description": "<p>Parameters to be used for the repository_property condition.</p>",
"inputFields": [
{
"name": "exclude",
"description": "<p>Array of repository properties that must not match.</p>",
"type": "[PropertyTargetDefinitionInput!]!",
"id": "propertytargetdefinitioninput",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#propertytargetdefinitioninput"
},
{
"name": "include",
"description": "<p>Array of repository properties that must match.</p>",
"type": "[PropertyTargetDefinitionInput!]!",
"id": "propertytargetdefinitioninput",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#propertytargetdefinitioninput"
}
]
},
{
"name": "RepositoryRuleConditionsInput",
"kind": "inputObjects",
@@ -80897,6 +81005,14 @@
"id": "repositorynameconditiontargetinput",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#repositorynameconditiontargetinput"
},
{
"name": "repositoryProperty",
"description": "<p>Configuration for the repository_property condition.</p>",
"type": "RepositoryPropertyConditionTargetInput",
"id": "repositorypropertyconditiontargetinput",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#repositorypropertyconditiontargetinput"
}
]
},

View File

@@ -48591,6 +48591,31 @@
}
]
},
{
"name": "PropertyTargetDefinition",
"kind": "objects",
"id": "propertytargetdefinition",
"href": "/graphql/reference/objects#propertytargetdefinition",
"description": "<p>A property that must match.</p>",
"fields": [
{
"name": "name",
"description": "<p>The name of the property.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "propertyValues",
"description": "<p>The values to match for.</p>",
"type": "[String!]!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
]
},
{
"name": "PublicKey",
"kind": "objects",
@@ -63296,6 +63321,31 @@
}
]
},
{
"name": "RepositoryPropertyConditionTarget",
"kind": "objects",
"id": "repositorypropertyconditiontarget",
"href": "/graphql/reference/objects#repositorypropertyconditiontarget",
"description": "<p>Parameters to be used for the repository_property condition.</p>",
"fields": [
{
"name": "exclude",
"description": "<p>Array of repository properties that must not match.</p>",
"type": "[PropertyTargetDefinition!]!",
"id": "propertytargetdefinition",
"kind": "objects",
"href": "/graphql/reference/objects#propertytargetdefinition"
},
{
"name": "include",
"description": "<p>Array of repository properties that must match.</p>",
"type": "[PropertyTargetDefinition!]!",
"id": "propertytargetdefinition",
"kind": "objects",
"href": "/graphql/reference/objects#propertytargetdefinition"
}
]
},
{
"name": "RepositoryRule",
"kind": "objects",
@@ -63374,6 +63424,14 @@
"id": "repositorynameconditiontarget",
"kind": "objects",
"href": "/graphql/reference/objects#repositorynameconditiontarget"
},
{
"name": "repositoryProperty",
"description": "<p>Configuration for the repository_property condition.</p>",
"type": "RepositoryPropertyConditionTarget",
"id": "repositorypropertyconditiontarget",
"kind": "objects",
"href": "/graphql/reference/objects#repositorypropertyconditiontarget"
}
]
},
@@ -97549,6 +97607,31 @@
}
]
},
{
"name": "PropertyTargetDefinitionInput",
"kind": "inputObjects",
"id": "propertytargetdefinitioninput",
"href": "/graphql/reference/input-objects#propertytargetdefinitioninput",
"description": "<p>A property that must match.</p>",
"inputFields": [
{
"name": "name",
"description": "<p>The name of the property.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "propertyValues",
"description": "<p>The values to match for.</p>",
"type": "[String!]!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
]
},
{
"name": "PublishSponsorsTierInput",
"kind": "inputObjects",
@@ -98458,6 +98541,31 @@
}
]
},
{
"name": "RepositoryPropertyConditionTargetInput",
"kind": "inputObjects",
"id": "repositorypropertyconditiontargetinput",
"href": "/graphql/reference/input-objects#repositorypropertyconditiontargetinput",
"description": "<p>Parameters to be used for the repository_property condition.</p>",
"inputFields": [
{
"name": "exclude",
"description": "<p>Array of repository properties that must not match.</p>",
"type": "[PropertyTargetDefinitionInput!]!",
"id": "propertytargetdefinitioninput",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#propertytargetdefinitioninput"
},
{
"name": "include",
"description": "<p>Array of repository properties that must match.</p>",
"type": "[PropertyTargetDefinitionInput!]!",
"id": "propertytargetdefinitioninput",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#propertytargetdefinitioninput"
}
]
},
{
"name": "RepositoryRuleConditionsInput",
"kind": "inputObjects",
@@ -98488,6 +98596,14 @@
"id": "repositorynameconditiontargetinput",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#repositorynameconditiontargetinput"
},
{
"name": "repositoryProperty",
"description": "<p>Configuration for the repository_property condition.</p>",
"type": "RepositoryPropertyConditionTargetInput",
"id": "repositorypropertyconditiontargetinput",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#repositorypropertyconditiontargetinput"
}
]
},