Replies: 1 comment
-
|
Please follow the documentation on https://devopsmigration.io Your config is not valid, and does not follow the docs. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I’ve been stuck with this error for a couple of weeks. Can someone please help me? I’m using the following configuration:
{
"Serilog": {
"MinimumLevel": "Debug"
},
"MigrationTools": {
"Version": "16.3",
"Endpoints": {
"Source": {
"EndpointType": "AzureDevOpsEndpoint",
"Organisation": "https://dev.azure.com/sorce-org",
"Project": "src-project",
"AuthenticationMode": "AccessToken",
"AccessToken": "xxxxxxxxxxx"
},
"Target": {
"EndpointType": "AzureDevOpsEndpoint",
"Organisation": "https://dev.azure.com/target-org/",
"Project": "target-project",
"AuthenticationMode": "AccessToken",
"AccessToken": ""
}
},
"Processors": [
{
"ProcessorType": "AzureDevOpsPipelineProcessor",
"BuildPipelines": null,
"Enabled": true,
"MigrateBuildPipelines": true,
"MigrateReleasePipelines": true,
"MigrateServiceConnections": true,
"MigrateTaskGroups": true,
"MigrateVariableGroups": true,
"ReleasePipelines": null,
"SourceName": "Source",
"TargetName": "Target"
}
]
}
}
The error appears :
[13:45:10 ERR] [16.3.1] Configuration file '.\pipeline_migration.json' is not valid against the schema.
Validation errors (deduplicated & filtered):
Likely root cause missing properties (all deduped candidate sets):
Path: MigrationTools.Endpoints.Source
- missing Authentication, Collection (freq 4)
Path: MigrationTools.Endpoints.Target
- missing Authentication, Collection (freq 4)
Path: MigrationTools.Processors[0]
- missing WIQLQuery (freq 4)
Path: MigrationTools.Endpoints.Source
Path: MigrationTools.Endpoints.Source.EndpointType
Path: MigrationTools.Endpoints.Target
Path: MigrationTools.Endpoints.Target.EndpointType
Path: MigrationTools.Processors[0]
Path: MigrationTools.Processors[0].BuildPipelines
Path: MigrationTools.Processors[0].ProcessorType
Path: MigrationTools.Processors[0].ReleasePipelines
Total unique validation errors after filtering: 11
NOTE: A single missing property can trigger multiple branch (anyOf/allOf) mismatches. Fix the root cause lines above first.
[13:45:10 INF] [16.3.1] Command ExecuteMigrationCommand completed in 00:00:01.1539946
[13:45:10 INF] [16.3.1] Check the logs for errors: C:\tools\MigrationTools\logs\20251208134508
Beta Was this translation helpful? Give feedback.
All reactions