Skip to content

Commit c629c31

Browse files
authored
Merge pull request #25765 from github/repo-sync
repo sync
2 parents 339a8e4 + 26fc201 commit c629c31

File tree

7 files changed

+98
-0
lines changed

7 files changed

+98
-0
lines changed

data/graphql/ghae/schema.docs-ghae.graphql

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17947,6 +17947,12 @@ interface Migration {
1794717947
The migration state.
1794817948
"""
1794917949
state: MigrationState!
17950+
17951+
"""
17952+
The number of warnings encountered for this migration. To review the warnings,
17953+
check the [Migration Log](https://docs.github.com/en/migrations/using-github-enterprise-importer/completing-your-migration-with-github-enterprise-importer/accessing-your-migration-logs-for-github-enterprise-importer).
17954+
"""
17955+
warningsCount: Int!
1795017956
}
1795117957

1795217958
"""
@@ -36172,6 +36178,12 @@ type RepositoryMigration implements Migration & Node {
3617236178
The migration state.
3617336179
"""
3617436180
state: MigrationState!
36181+
36182+
"""
36183+
The number of warnings encountered for this migration. To review the warnings,
36184+
check the [Migration Log](https://docs.github.com/en/migrations/using-github-enterprise-importer/completing-your-migration-with-github-enterprise-importer/accessing-your-migration-logs-for-github-enterprise-importer).
36185+
"""
36186+
warningsCount: Int!
3617536187
}
3617636188

3617736189
"""

data/graphql/ghec/schema.docs.graphql

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20579,6 +20579,12 @@ interface Migration {
2057920579
The migration state.
2058020580
"""
2058120581
state: MigrationState!
20582+
20583+
"""
20584+
The number of warnings encountered for this migration. To review the warnings,
20585+
check the [Migration Log](https://docs.github.com/en/migrations/using-github-enterprise-importer/completing-your-migration-with-github-enterprise-importer/accessing-your-migration-logs-for-github-enterprise-importer).
20586+
"""
20587+
warningsCount: Int!
2058220588
}
2058320589

2058420590
"""
@@ -43623,6 +43629,12 @@ type RepositoryMigration implements Migration & Node {
4362343629
The migration state.
4362443630
"""
4362543631
state: MigrationState!
43632+
43633+
"""
43634+
The number of warnings encountered for this migration. To review the warnings,
43635+
check the [Migration Log](https://docs.github.com/en/migrations/using-github-enterprise-importer/completing-your-migration-with-github-enterprise-importer/accessing-your-migration-logs-for-github-enterprise-importer).
43636+
"""
43637+
warningsCount: Int!
4362643638
}
4362743639

4362843640
"""

data/graphql/schema.docs.graphql

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20579,6 +20579,12 @@ interface Migration {
2057920579
The migration state.
2058020580
"""
2058120581
state: MigrationState!
20582+
20583+
"""
20584+
The number of warnings encountered for this migration. To review the warnings,
20585+
check the [Migration Log](https://docs.github.com/en/migrations/using-github-enterprise-importer/completing-your-migration-with-github-enterprise-importer/accessing-your-migration-logs-for-github-enterprise-importer).
20586+
"""
20587+
warningsCount: Int!
2058220588
}
2058320589

2058420590
"""
@@ -43623,6 +43629,12 @@ type RepositoryMigration implements Migration & Node {
4362343629
The migration state.
4362443630
"""
4362543631
state: MigrationState!
43632+
43633+
"""
43634+
The number of warnings encountered for this migration. To review the warnings,
43635+
check the [Migration Log](https://docs.github.com/en/migrations/using-github-enterprise-importer/completing-your-migration-with-github-enterprise-importer/accessing-your-migration-logs-for-github-enterprise-importer).
43636+
"""
43637+
warningsCount: Int!
4362643638
}
4362743639

4362843640
"""

src/graphql/data/fpt/changelog.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
[
2+
{
3+
"schemaChanges": [
4+
{
5+
"title": "The GraphQL schema includes these changes:",
6+
"changes": [
7+
"<p>Field <code>warningsCount</code> was added to interface <code>Migration</code></p>",
8+
"<p>Field <code>warningsCount</code> was added to object type <code>RepositoryMigration</code></p>"
9+
]
10+
}
11+
],
12+
"previewChanges": [],
13+
"upcomingChanges": [],
14+
"date": "2023-05-31"
15+
},
216
{
317
"schemaChanges": [
418
{

src/graphql/data/fpt/schema.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60156,6 +60156,14 @@
6015660156
"id": "migrationstate",
6015760157
"kind": "enums",
6015860158
"href": "/graphql/reference/enums#migrationstate"
60159+
},
60160+
{
60161+
"name": "warningsCount",
60162+
"description": "<p>The number of warnings encountered for this migration. To review the warnings,\ncheck the <a href=\"https://docs.github.com/en/migrations/using-github-enterprise-importer/completing-your-migration-with-github-enterprise-importer/accessing-your-migration-logs-for-github-enterprise-importer\">Migration Log</a>.</p>",
60163+
"type": "Int!",
60164+
"id": "int",
60165+
"kind": "scalars",
60166+
"href": "/graphql/reference/scalars#int"
6015960167
}
6016060168
]
6016160169
},
@@ -74654,6 +74662,14 @@
7465474662
"id": "migrationstate",
7465574663
"kind": "enums",
7465674664
"href": "/graphql/reference/enums#migrationstate"
74665+
},
74666+
{
74667+
"name": "warningsCount",
74668+
"description": "<p>The number of warnings encountered for this migration. To review the warnings,\ncheck the <a href=\"https://docs.github.com/en/migrations/using-github-enterprise-importer/completing-your-migration-with-github-enterprise-importer/accessing-your-migration-logs-for-github-enterprise-importer\">Migration Log</a>.</p>",
74669+
"type": "Int!",
74670+
"id": "int",
74671+
"kind": "scalars",
74672+
"href": "/graphql/reference/scalars#int"
7465774673
}
7465874674
]
7465974675
},

src/graphql/data/ghae/schema.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50498,6 +50498,14 @@
5049850498
"id": "migrationstate",
5049950499
"kind": "enums",
5050050500
"href": "/graphql/reference/enums#migrationstate"
50501+
},
50502+
{
50503+
"name": "warningsCount",
50504+
"description": "<p>The number of warnings encountered for this migration. To review the warnings,\ncheck the <a href=\"https://docs.github.com/en/migrations/using-github-enterprise-importer/completing-your-migration-with-github-enterprise-importer/accessing-your-migration-logs-for-github-enterprise-importer\">Migration Log</a>.</p>",
50505+
"type": "Int!",
50506+
"id": "int",
50507+
"kind": "scalars",
50508+
"href": "/graphql/reference/scalars#int"
5050150509
}
5050250510
]
5050350511
},
@@ -62432,6 +62440,14 @@
6243262440
"id": "migrationstate",
6243362441
"kind": "enums",
6243462442
"href": "/graphql/reference/enums#migrationstate"
62443+
},
62444+
{
62445+
"name": "warningsCount",
62446+
"description": "<p>The number of warnings encountered for this migration. To review the warnings,\ncheck the <a href=\"https://docs.github.com/en/migrations/using-github-enterprise-importer/completing-your-migration-with-github-enterprise-importer/accessing-your-migration-logs-for-github-enterprise-importer\">Migration Log</a>.</p>",
62447+
"type": "Int!",
62448+
"id": "int",
62449+
"kind": "scalars",
62450+
"href": "/graphql/reference/scalars#int"
6243562451
}
6243662452
]
6243762453
},

src/graphql/data/ghec/schema.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60156,6 +60156,14 @@
6015660156
"id": "migrationstate",
6015760157
"kind": "enums",
6015860158
"href": "/graphql/reference/enums#migrationstate"
60159+
},
60160+
{
60161+
"name": "warningsCount",
60162+
"description": "<p>The number of warnings encountered for this migration. To review the warnings,\ncheck the <a href=\"https://docs.github.com/en/migrations/using-github-enterprise-importer/completing-your-migration-with-github-enterprise-importer/accessing-your-migration-logs-for-github-enterprise-importer\">Migration Log</a>.</p>",
60163+
"type": "Int!",
60164+
"id": "int",
60165+
"kind": "scalars",
60166+
"href": "/graphql/reference/scalars#int"
6015960167
}
6016060168
]
6016160169
},
@@ -74654,6 +74662,14 @@
7465474662
"id": "migrationstate",
7465574663
"kind": "enums",
7465674664
"href": "/graphql/reference/enums#migrationstate"
74665+
},
74666+
{
74667+
"name": "warningsCount",
74668+
"description": "<p>The number of warnings encountered for this migration. To review the warnings,\ncheck the <a href=\"https://docs.github.com/en/migrations/using-github-enterprise-importer/completing-your-migration-with-github-enterprise-importer/accessing-your-migration-logs-for-github-enterprise-importer\">Migration Log</a>.</p>",
74669+
"type": "Int!",
74670+
"id": "int",
74671+
"kind": "scalars",
74672+
"href": "/graphql/reference/scalars#int"
7465774673
}
7465874674
]
7465974675
},

0 commit comments

Comments
 (0)