Action ran graphql script"update-files"

This commit is contained in:
rachmari 2022-09-08 16:36:36 +00:00 коммит произвёл GitHub
Родитель 81faf43a57
Коммит 7cbd830f78
11 изменённых файлов: 425 добавлений и 6 удалений

Просмотреть файл

@ -239,3 +239,9 @@ upcoming_changes:
date: '2022-10-01T00:00:00+00:00'
criticality: breaking
owner: jhunschejones
- location: Commit.changedFiles
description: '`changedFiles` will be removed. Use `changedFilesIfAvailable` instead.'
reason: '`changedFiles` will be removed.'
date: '2023-01-01T00:00:00+00:00'
criticality: breaking
owner: adamshwert

Просмотреть файл

@ -3699,9 +3699,21 @@ type Commit implements GitObject & Node & Subscribable & UniformResourceLocatabl
): Blame!
"""
The number of changed files in this commit.
We recommend using the `changedFielsIfAvailable` field instead of
`changedFiles`, as `changedFiles` will cause your request to return an error
if GitHub is unable to calculate the number of changed files.
"""
changedFiles: Int!
@deprecated(
reason: "`changedFiles` will be removed. Use `changedFilesIfAvailable` instead. Removal on 2023-01-01 UTC."
)
"""
The number of changed files in this commit. If GitHub is unable to calculate
the number of changed files (for example due to a timeout), this will return
`null`. We recommend using this field instead of `changedFiles`.
"""
changedFilesIfAvailable: Int
"""
The check suites associated with a commit.
@ -9707,6 +9719,41 @@ enum EnterpriseAdministratorRole {
OWNER
}
"""
The possible values for the enterprise allow private repository forking policy value.
"""
enum EnterpriseAllowPrivateRepositoryForkingPolicyValue {
"""
Members can fork a repository to an organization within this enterprise.
"""
ENTERPRISE_ORGANIZATIONS
"""
Members can fork a repository to their enterprise-managed user account or an organization inside this enterprise.
"""
ENTERPRISE_ORGANIZATIONS_USER_ACCOUNTS
"""
Members can fork a repository to their user account or an organization, either inside or outside of this enterprise.
"""
EVERYWHERE
"""
Members can fork a repository only within the same organization (intra-org).
"""
SAME_ORGANIZATION
"""
Members can fork a repository to their user account or within the same organization.
"""
SAME_ORGANIZATION_USER_ACCOUNTS
"""
Members can fork a repository to their user account.
"""
USER_ACCOUNTS
}
"""
Metadata for an audit entry containing enterprise account information.
"""
@ -10282,6 +10329,11 @@ type EnterpriseOwnerInfo {
value: Boolean!
): OrganizationConnection!
"""
The value for the allow private repository forking policy on the enterprise.
"""
allowPrivateRepositoryForkingSettingPolicyValue: EnterpriseAllowPrivateRepositoryForkingPolicyValue
"""
The setting value for base repository permissions for organizations in this enterprise.
"""
@ -39975,6 +40027,11 @@ input UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput {
"""
enterpriseId: ID! @possibleTypes(concreteTypes: ["Enterprise"])
"""
The value for the allow private repository forking policy on the enterprise.
"""
policyValue: EnterpriseAllowPrivateRepositoryForkingPolicyValue
"""
The value for the allow private repository forking setting on the enterprise.
"""

Просмотреть файл

@ -1730,3 +1730,9 @@ upcoming_changes:
date: '2022-10-01T00:00:00+00:00'
criticality: breaking
owner: lukewar
- location: Commit.changedFiles
description: '`changedFiles` will be removed. Use `changedFilesIfAvailable` instead.'
reason: '`changedFiles` will be removed.'
date: '2023-01-01T00:00:00+00:00'
criticality: breaking
owner: adamshwert

Просмотреть файл

@ -4129,9 +4129,21 @@ type Commit implements GitObject & Node & Subscribable & UniformResourceLocatabl
): Blame!
"""
The number of changed files in this commit.
We recommend using the `changedFielsIfAvailable` field instead of
`changedFiles`, as `changedFiles` will cause your request to return an error
if GitHub is unable to calculate the number of changed files.
"""
changedFiles: Int!
@deprecated(
reason: "`changedFiles` will be removed. Use `changedFilesIfAvailable` instead. Removal on 2023-01-01 UTC."
)
"""
The number of changed files in this commit. If GitHub is unable to calculate
the number of changed files (for example due to a timeout), this will return
`null`. We recommend using this field instead of `changedFiles`.
"""
changedFilesIfAvailable: Int
"""
The check suites associated with a commit.
@ -11031,6 +11043,41 @@ enum EnterpriseAdministratorRole {
OWNER
}
"""
The possible values for the enterprise allow private repository forking policy value.
"""
enum EnterpriseAllowPrivateRepositoryForkingPolicyValue {
"""
Members can fork a repository to an organization within this enterprise.
"""
ENTERPRISE_ORGANIZATIONS
"""
Members can fork a repository to their enterprise-managed user account or an organization inside this enterprise.
"""
ENTERPRISE_ORGANIZATIONS_USER_ACCOUNTS
"""
Members can fork a repository to their user account or an organization, either inside or outside of this enterprise.
"""
EVERYWHERE
"""
Members can fork a repository only within the same organization (intra-org).
"""
SAME_ORGANIZATION
"""
Members can fork a repository to their user account or within the same organization.
"""
SAME_ORGANIZATION_USER_ACCOUNTS
"""
Members can fork a repository to their user account.
"""
USER_ACCOUNTS
}
"""
Metadata for an audit entry containing enterprise account information.
"""
@ -11606,6 +11653,11 @@ type EnterpriseOwnerInfo {
value: Boolean!
): OrganizationConnection!
"""
The value for the allow private repository forking policy on the enterprise.
"""
allowPrivateRepositoryForkingSettingPolicyValue: EnterpriseAllowPrivateRepositoryForkingPolicyValue
"""
The setting value for base repository permissions for organizations in this enterprise.
"""
@ -49024,6 +49076,11 @@ input UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput {
"""
enterpriseId: ID! @possibleTypes(concreteTypes: ["Enterprise"])
"""
The value for the allow private repository forking policy on the enterprise.
"""
policyValue: EnterpriseAllowPrivateRepositoryForkingPolicyValue
"""
The value for the allow private repository forking setting on the enterprise.
"""

Просмотреть файл

@ -1730,3 +1730,9 @@ upcoming_changes:
date: '2022-10-01T00:00:00+00:00'
criticality: breaking
owner: lukewar
- location: Commit.changedFiles
description: '`changedFiles` will be removed. Use `changedFilesIfAvailable` instead.'
reason: '`changedFiles` will be removed.'
date: '2023-01-01T00:00:00+00:00'
criticality: breaking
owner: adamshwert

Просмотреть файл

@ -4129,9 +4129,21 @@ type Commit implements GitObject & Node & Subscribable & UniformResourceLocatabl
): Blame!
"""
The number of changed files in this commit.
We recommend using the `changedFielsIfAvailable` field instead of
`changedFiles`, as `changedFiles` will cause your request to return an error
if GitHub is unable to calculate the number of changed files.
"""
changedFiles: Int!
@deprecated(
reason: "`changedFiles` will be removed. Use `changedFilesIfAvailable` instead. Removal on 2023-01-01 UTC."
)
"""
The number of changed files in this commit. If GitHub is unable to calculate
the number of changed files (for example due to a timeout), this will return
`null`. We recommend using this field instead of `changedFiles`.
"""
changedFilesIfAvailable: Int
"""
The check suites associated with a commit.
@ -11031,6 +11043,41 @@ enum EnterpriseAdministratorRole {
OWNER
}
"""
The possible values for the enterprise allow private repository forking policy value.
"""
enum EnterpriseAllowPrivateRepositoryForkingPolicyValue {
"""
Members can fork a repository to an organization within this enterprise.
"""
ENTERPRISE_ORGANIZATIONS
"""
Members can fork a repository to their enterprise-managed user account or an organization inside this enterprise.
"""
ENTERPRISE_ORGANIZATIONS_USER_ACCOUNTS
"""
Members can fork a repository to their user account or an organization, either inside or outside of this enterprise.
"""
EVERYWHERE
"""
Members can fork a repository only within the same organization (intra-org).
"""
SAME_ORGANIZATION
"""
Members can fork a repository to their user account or within the same organization.
"""
SAME_ORGANIZATION_USER_ACCOUNTS
"""
Members can fork a repository to their user account.
"""
USER_ACCOUNTS
}
"""
Metadata for an audit entry containing enterprise account information.
"""
@ -11606,6 +11653,11 @@ type EnterpriseOwnerInfo {
value: Boolean!
): OrganizationConnection!
"""
The value for the allow private repository forking policy on the enterprise.
"""
allowPrivateRepositoryForkingSettingPolicyValue: EnterpriseAllowPrivateRepositoryForkingPolicyValue
"""
The setting value for base repository permissions for organizations in this enterprise.
"""
@ -49024,6 +49076,11 @@ input UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput {
"""
enterpriseId: ID! @possibleTypes(concreteTypes: ["Enterprise"])
"""
The value for the allow private repository forking policy on the enterprise.
"""
policyValue: EnterpriseAllowPrivateRepositoryForkingPolicyValue
"""
The value for the allow private repository forking setting on the enterprise.
"""

Просмотреть файл

@ -1,4 +1,27 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"<p>Type <code>EnterpriseAllowPrivateRepositoryForkingPolicyValue</code> was added</p>",
"<p>Field <code>changedFilesIfAvailable</code> was added to object type <code>Commit</code></p>",
"<p>Field <code>allowPrivateRepositoryForkingSettingPolicyValue</code> was added to object type <code>EnterpriseOwnerInfo</code></p>",
"<p>Input field <code>policyValue</code> was added to input object type <code>UpdateEnterpriseAllowPrivateRepositoryForkingSettingInput</code></p>"
]
}
],
"previewChanges": [],
"upcomingChanges": [
{
"title": "The following changes will be made to the schema:",
"changes": [
"<p>On member <code>Commit.changedFiles</code>:<code>changedFiles</code> will be removed. Use <code>changedFilesIfAvailable</code> instead. <strong>Effective 2023-01-01</strong>.</p>"
]
}
],
"date": "2022-09-08"
},
{
"schemaChanges": [
{

Просмотреть файл

@ -11663,10 +11663,20 @@
},
{
"name": "changedFiles",
"description": "<p>The number of changed files in this commit.</p>",
"description": "<p>We recommend using the <code>changedFielsIfAvailable</code> field instead of\n<code>changedFiles</code>, as <code>changedFiles</code> will cause your request to return an error\nif GitHub is unable to calculate the number of changed files.</p>",
"type": "Int!",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int",
"isDeprecated": true,
"deprecationReason": "<p><code>changedFiles</code> will be removed. Use <code>changedFilesIfAvailable</code> instead. Removal on 2023-01-01 UTC.</p>"
},
{
"name": "changedFilesIfAvailable",
"description": "<p>The number of changed files in this commit. If GitHub is unable to calculate\nthe number of changed files (for example due to a timeout), this will return\n<code>null</code>. We recommend using this field instead of <code>changedFiles</code>.</p>",
"type": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
},
{
@ -19936,6 +19946,14 @@
}
]
},
{
"name": "allowPrivateRepositoryForkingSettingPolicyValue",
"description": "<p>The value for the allow private repository forking policy on the enterprise.</p>",
"type": "EnterpriseAllowPrivateRepositoryForkingPolicyValue",
"id": "enterpriseallowprivaterepositoryforkingpolicyvalue",
"kind": "enums",
"href": "/graphql/reference/enums#enterpriseallowprivaterepositoryforkingpolicyvalue"
},
{
"name": "defaultRepositoryPermissionSetting",
"description": "<p>The setting value for base repository permissions for organizations in this enterprise.</p>",
@ -74230,6 +74248,39 @@
}
]
},
{
"name": "EnterpriseAllowPrivateRepositoryForkingPolicyValue",
"kind": "enums",
"id": "enterpriseallowprivaterepositoryforkingpolicyvalue",
"href": "/graphql/reference/enums#enterpriseallowprivaterepositoryforkingpolicyvalue",
"description": "<p>The possible values for the enterprise allow private repository forking policy value.</p>",
"values": [
{
"name": "ENTERPRISE_ORGANIZATIONS",
"description": "<p>Members can fork a repository to an organization within this enterprise.</p>"
},
{
"name": "ENTERPRISE_ORGANIZATIONS_USER_ACCOUNTS",
"description": "<p>Members can fork a repository to their enterprise-managed user account or an organization inside this enterprise.</p>"
},
{
"name": "EVERYWHERE",
"description": "<p>Members can fork a repository to their user account or an organization, either inside or outside of this enterprise.</p>"
},
{
"name": "SAME_ORGANIZATION",
"description": "<p>Members can fork a repository only within the same organization (intra-org).</p>"
},
{
"name": "SAME_ORGANIZATION_USER_ACCOUNTS",
"description": "<p>Members can fork a repository to their user account or within the same organization.</p>"
},
{
"name": "USER_ACCOUNTS",
"description": "<p>Members can fork a repository to their user account.</p>"
}
]
},
{
"name": "EnterpriseDefaultRepositoryPermissionSettingValue",
"kind": "enums",
@ -88429,6 +88480,14 @@
"href": "/graphql/reference/scalars#id",
"isDeprecated": false
},
{
"name": "policyValue",
"description": "<p>The value for the allow private repository forking policy on the enterprise.</p>",
"type": "EnterpriseAllowPrivateRepositoryForkingPolicyValue",
"id": "enterpriseallowprivaterepositoryforkingpolicyvalue",
"kind": "enums",
"href": "/graphql/reference/enums#enterpriseallowprivaterepositoryforkingpolicyvalue"
},
{
"name": "settingValue",
"description": "<p>The value for the allow private repository forking setting on the enterprise.</p>",

Просмотреть файл

@ -9990,10 +9990,20 @@
},
{
"name": "changedFiles",
"description": "<p>The number of changed files in this commit.</p>",
"description": "<p>We recommend using the <code>changedFielsIfAvailable</code> field instead of\n<code>changedFiles</code>, as <code>changedFiles</code> will cause your request to return an error\nif GitHub is unable to calculate the number of changed files.</p>",
"type": "Int!",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int",
"isDeprecated": true,
"deprecationReason": "<p><code>changedFiles</code> will be removed. Use <code>changedFilesIfAvailable</code> instead. Removal on 2023-01-01 UTC.</p>"
},
{
"name": "changedFilesIfAvailable",
"description": "<p>The number of changed files in this commit. If GitHub is unable to calculate\nthe number of changed files (for example due to a timeout), this will return\n<code>null</code>. We recommend using this field instead of <code>changedFiles</code>.</p>",
"type": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
},
{
@ -17356,6 +17366,14 @@
}
]
},
{
"name": "allowPrivateRepositoryForkingSettingPolicyValue",
"description": "<p>The value for the allow private repository forking policy on the enterprise.</p>",
"type": "EnterpriseAllowPrivateRepositoryForkingPolicyValue",
"id": "enterpriseallowprivaterepositoryforkingpolicyvalue",
"kind": "enums",
"href": "/graphql/reference/enums#enterpriseallowprivaterepositoryforkingpolicyvalue"
},
{
"name": "defaultRepositoryPermissionSetting",
"description": "<p>The setting value for base repository permissions for organizations in this enterprise.</p>",
@ -60815,6 +60833,39 @@
}
]
},
{
"name": "EnterpriseAllowPrivateRepositoryForkingPolicyValue",
"kind": "enums",
"id": "enterpriseallowprivaterepositoryforkingpolicyvalue",
"href": "/graphql/reference/enums#enterpriseallowprivaterepositoryforkingpolicyvalue",
"description": "<p>The possible values for the enterprise allow private repository forking policy value.</p>",
"values": [
{
"name": "ENTERPRISE_ORGANIZATIONS",
"description": "<p>Members can fork a repository to an organization within this enterprise.</p>"
},
{
"name": "ENTERPRISE_ORGANIZATIONS_USER_ACCOUNTS",
"description": "<p>Members can fork a repository to their enterprise-managed user account or an organization inside this enterprise.</p>"
},
{
"name": "EVERYWHERE",
"description": "<p>Members can fork a repository to their user account or an organization, either inside or outside of this enterprise.</p>"
},
{
"name": "SAME_ORGANIZATION",
"description": "<p>Members can fork a repository only within the same organization (intra-org).</p>"
},
{
"name": "SAME_ORGANIZATION_USER_ACCOUNTS",
"description": "<p>Members can fork a repository to their user account or within the same organization.</p>"
},
{
"name": "USER_ACCOUNTS",
"description": "<p>Members can fork a repository to their user account.</p>"
}
]
},
{
"name": "EnterpriseDefaultRepositoryPermissionSettingValue",
"kind": "enums",
@ -72175,6 +72226,14 @@
"href": "/graphql/reference/scalars#id",
"isDeprecated": false
},
{
"name": "policyValue",
"description": "<p>The value for the allow private repository forking policy on the enterprise.</p>",
"type": "EnterpriseAllowPrivateRepositoryForkingPolicyValue",
"id": "enterpriseallowprivaterepositoryforkingpolicyvalue",
"kind": "enums",
"href": "/graphql/reference/enums#enterpriseallowprivaterepositoryforkingpolicyvalue"
},
{
"name": "settingValue",
"description": "<p>The value for the allow private repository forking setting on the enterprise.</p>",

Просмотреть файл

@ -11663,10 +11663,20 @@
},
{
"name": "changedFiles",
"description": "<p>The number of changed files in this commit.</p>",
"description": "<p>We recommend using the <code>changedFielsIfAvailable</code> field instead of\n<code>changedFiles</code>, as <code>changedFiles</code> will cause your request to return an error\nif GitHub is unable to calculate the number of changed files.</p>",
"type": "Int!",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int",
"isDeprecated": true,
"deprecationReason": "<p><code>changedFiles</code> will be removed. Use <code>changedFilesIfAvailable</code> instead. Removal on 2023-01-01 UTC.</p>"
},
{
"name": "changedFilesIfAvailable",
"description": "<p>The number of changed files in this commit. If GitHub is unable to calculate\nthe number of changed files (for example due to a timeout), this will return\n<code>null</code>. We recommend using this field instead of <code>changedFiles</code>.</p>",
"type": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
},
{
@ -19936,6 +19946,14 @@
}
]
},
{
"name": "allowPrivateRepositoryForkingSettingPolicyValue",
"description": "<p>The value for the allow private repository forking policy on the enterprise.</p>",
"type": "EnterpriseAllowPrivateRepositoryForkingPolicyValue",
"id": "enterpriseallowprivaterepositoryforkingpolicyvalue",
"kind": "enums",
"href": "/graphql/reference/enums#enterpriseallowprivaterepositoryforkingpolicyvalue"
},
{
"name": "defaultRepositoryPermissionSetting",
"description": "<p>The setting value for base repository permissions for organizations in this enterprise.</p>",
@ -74230,6 +74248,39 @@
}
]
},
{
"name": "EnterpriseAllowPrivateRepositoryForkingPolicyValue",
"kind": "enums",
"id": "enterpriseallowprivaterepositoryforkingpolicyvalue",
"href": "/graphql/reference/enums#enterpriseallowprivaterepositoryforkingpolicyvalue",
"description": "<p>The possible values for the enterprise allow private repository forking policy value.</p>",
"values": [
{
"name": "ENTERPRISE_ORGANIZATIONS",
"description": "<p>Members can fork a repository to an organization within this enterprise.</p>"
},
{
"name": "ENTERPRISE_ORGANIZATIONS_USER_ACCOUNTS",
"description": "<p>Members can fork a repository to their enterprise-managed user account or an organization inside this enterprise.</p>"
},
{
"name": "EVERYWHERE",
"description": "<p>Members can fork a repository to their user account or an organization, either inside or outside of this enterprise.</p>"
},
{
"name": "SAME_ORGANIZATION",
"description": "<p>Members can fork a repository only within the same organization (intra-org).</p>"
},
{
"name": "SAME_ORGANIZATION_USER_ACCOUNTS",
"description": "<p>Members can fork a repository to their user account or within the same organization.</p>"
},
{
"name": "USER_ACCOUNTS",
"description": "<p>Members can fork a repository to their user account.</p>"
}
]
},
{
"name": "EnterpriseDefaultRepositoryPermissionSettingValue",
"kind": "enums",
@ -88429,6 +88480,14 @@
"href": "/graphql/reference/scalars#id",
"isDeprecated": false
},
{
"name": "policyValue",
"description": "<p>The value for the allow private repository forking policy on the enterprise.</p>",
"type": "EnterpriseAllowPrivateRepositoryForkingPolicyValue",
"id": "enterpriseallowprivaterepositoryforkingpolicyvalue",
"kind": "enums",
"href": "/graphql/reference/enums#enterpriseallowprivaterepositoryforkingpolicyvalue"
},
{
"name": "settingValue",
"description": "<p>The value for the allow private repository forking setting on the enterprise.</p>",

Просмотреть файл

@ -1,5 +1,15 @@
{
"dotcom": {
"2023-01-01": [
{
"location": "Commit.changedFiles",
"description": "<p><code>changedFiles</code> will be removed. Use <code>changedFilesIfAvailable</code> instead.</p>",
"reason": "<p><code>changedFiles</code> will be removed.</p>",
"date": "2023-01-01",
"criticality": "breaking",
"owner": "adamshwert"
}
],
"2022-10-01": [
{
"location": "User.recentProjectsNext",
@ -1438,6 +1448,16 @@
]
},
"ghec": {
"2023-01-01": [
{
"location": "Commit.changedFiles",
"description": "<p><code>changedFiles</code> will be removed. Use <code>changedFilesIfAvailable</code> instead.</p>",
"reason": "<p><code>changedFiles</code> will be removed.</p>",
"date": "2023-01-01",
"criticality": "breaking",
"owner": "adamshwert"
}
],
"2022-10-01": [
{
"location": "User.recentProjectsNext",
@ -3590,6 +3610,16 @@
]
},
"ghae": {
"2023-01-01": [
{
"location": "Commit.changedFiles",
"description": "<p><code>changedFiles</code> will be removed. Use <code>changedFilesIfAvailable</code> instead.</p>",
"reason": "<p><code>changedFiles</code> will be removed.</p>",
"date": "2023-01-01",
"criticality": "breaking",
"owner": "adamshwert"
}
],
"2022-10-01": [
{
"location": "UnlockAndResetMergeGroupInput.branch",