diff --git a/data/graphql/ghae/schema.docs-ghae.graphql b/data/graphql/ghae/schema.docs-ghae.graphql index eab2b52bfe..3dba928515 100644 --- a/data/graphql/ghae/schema.docs-ghae.graphql +++ b/data/graphql/ghae/schema.docs-ghae.graphql @@ -24917,6 +24917,11 @@ enum OrganizationMigrationState { """ FAILED + """ + The Octoshift migration has invalid credentials. + """ + FAILED_VALIDATION + """ The Octoshift migration is in progress. """ @@ -24927,6 +24932,11 @@ enum OrganizationMigrationState { """ NOT_STARTED + """ + The Octoshift migration needs to have its credentials validated. + """ + PENDING_VALIDATION + """ The Octoshift migration is performing post repository migrations. """ diff --git a/data/graphql/ghec/schema.docs.graphql b/data/graphql/ghec/schema.docs.graphql index dcf6c67e2e..92aa74f267 100644 --- a/data/graphql/ghec/schema.docs.graphql +++ b/data/graphql/ghec/schema.docs.graphql @@ -28691,6 +28691,11 @@ enum OrganizationMigrationState { """ FAILED + """ + The Octoshift migration has invalid credentials. + """ + FAILED_VALIDATION + """ The Octoshift migration is in progress. """ @@ -28701,6 +28706,11 @@ enum OrganizationMigrationState { """ NOT_STARTED + """ + The Octoshift migration needs to have its credentials validated. + """ + PENDING_VALIDATION + """ The Octoshift migration is performing post repository migrations. """ diff --git a/data/graphql/schema.docs.graphql b/data/graphql/schema.docs.graphql index dcf6c67e2e..92aa74f267 100644 --- a/data/graphql/schema.docs.graphql +++ b/data/graphql/schema.docs.graphql @@ -28691,6 +28691,11 @@ enum OrganizationMigrationState { """ FAILED + """ + The Octoshift migration has invalid credentials. + """ + FAILED_VALIDATION + """ The Octoshift migration is in progress. """ @@ -28701,6 +28706,11 @@ enum OrganizationMigrationState { """ NOT_STARTED + """ + The Octoshift migration needs to have its credentials validated. + """ + PENDING_VALIDATION + """ The Octoshift migration is performing post repository migrations. """ diff --git a/src/graphql/data/fpt/changelog.json b/src/graphql/data/fpt/changelog.json index 3884f2811f..eb9cdb180a 100644 --- a/src/graphql/data/fpt/changelog.json +++ b/src/graphql/data/fpt/changelog.json @@ -1,4 +1,18 @@ [ + { + "schemaChanges": [ + { + "title": "The GraphQL schema includes these changes:", + "changes": [ + "
Enum value 'FAILED_VALIDATIONwas added to enumOrganizationMigrationState'
Enum value 'PENDING_VALIDATIONwas added to enumOrganizationMigrationState'
The Octoshift migration has failed.
" }, + { + "name": "FAILED_VALIDATION", + "description": "The Octoshift migration has invalid credentials.
" + }, { "name": "IN_PROGRESS", "description": "The Octoshift migration is in progress.
" @@ -79680,6 +79684,10 @@ "name": "NOT_STARTED", "description": "The Octoshift migration has not started.
" }, + { + "name": "PENDING_VALIDATION", + "description": "The Octoshift migration needs to have its credentials validated.
" + }, { "name": "POST_REPO_MIGRATION", "description": "The Octoshift migration is performing post repository migrations.
" diff --git a/src/graphql/data/ghae/schema.json b/src/graphql/data/ghae/schema.json index db66a5b1f9..9577532f60 100644 --- a/src/graphql/data/ghae/schema.json +++ b/src/graphql/data/ghae/schema.json @@ -66256,6 +66256,10 @@ "name": "FAILED", "description": "The Octoshift migration has failed.
" }, + { + "name": "FAILED_VALIDATION", + "description": "The Octoshift migration has invalid credentials.
" + }, { "name": "IN_PROGRESS", "description": "The Octoshift migration is in progress.
" @@ -66264,6 +66268,10 @@ "name": "NOT_STARTED", "description": "The Octoshift migration has not started.
" }, + { + "name": "PENDING_VALIDATION", + "description": "The Octoshift migration needs to have its credentials validated.
" + }, { "name": "POST_REPO_MIGRATION", "description": "The Octoshift migration is performing post repository migrations.
" diff --git a/src/graphql/data/ghec/schema.json b/src/graphql/data/ghec/schema.json index 98aad6a15d..49a7910ce1 100644 --- a/src/graphql/data/ghec/schema.json +++ b/src/graphql/data/ghec/schema.json @@ -79672,6 +79672,10 @@ "name": "FAILED", "description": "The Octoshift migration has failed.
" }, + { + "name": "FAILED_VALIDATION", + "description": "The Octoshift migration has invalid credentials.
" + }, { "name": "IN_PROGRESS", "description": "The Octoshift migration is in progress.
" @@ -79680,6 +79684,10 @@ "name": "NOT_STARTED", "description": "The Octoshift migration has not started.
" }, + { + "name": "PENDING_VALIDATION", + "description": "The Octoshift migration needs to have its credentials validated.
" + }, { "name": "POST_REPO_MIGRATION", "description": "The Octoshift migration is performing post repository migrations.
"