Replies: 2 comments 10 replies
-
@GABecker I did not create Funding for us doing work on this tool is generally through 1) customer funding, or 2) donated free time. |
Beta Was this translation helpful? Give feedback.
-
Are there any error messages when you run the processor? Also, can you clarify what specifically is not synchronizing? You mentioned fields are synchronizing fine. So what specifically is not synchronizing, Is it entire types not moving over? Or is it Rules/States/Behaviors? |
Beta Was this translation helpful? Give feedback.
-
I have setup ProcessDefinitionProcessor and able to sync fields between source and target. However, looking to update the process templates within an agile template (Epic, User Story, etc..). Some reason the process templates are not being updated. Do I need to use a different processor or am I missing steps within ProcessDefinitionProcessor .json. I wasn't able to find examples to help.
Here is what I am using to sync.
{
"Serilog": {
"MinimumLevel": "Information"
},
"MigrationTools": {
"Version": "16.0",
"Endpoints": {
"Source": {
"EndpointType": "AzureDevOpsEndpoint",
"AuthenticationMode": "AccessToken",
"AccessToken": "TokeNxyz",
"Organisation": "https://dev.azure.com/xyz",
"Project": "ProjectXYZ",
"ReflectedWorkItemIdField": ""
},
"Target": {
"EndpointType": "AzureDevOpsEndpoint",
"AuthenticationMode": "AccessToken",
"AccessToken": "TokeNxyz",
"Organisation": "https://dev.azure.com/123",
"Project": "ProcessMigTest",
"ReflectedWorkItemIdField": ""
}
},
"Processors": [
{
"ProcessorType": "ProcessDefinitionProcessor",
"Enabled": true,
"Processes": {
"TestAgile.Epic": [
"Epic"
]
},
"ProcessMaps": {
"TestAgile": "TestAgile"
},
"UpdateProcessDetails": true,
"MaxDegreeOfParallelism": 0,
"SourceName": "Source",
"TargetName": "Target"
}
],
"CommonTools": {
"FieldMappingTool": {
"Enabled": true,
"FieldMaps": [
{
"FieldMapType": "FieldToFieldMap",
"sourceField": "",
"targetField": "",
"defaultValue": "",
"ApplyTo": ["*"]
}
]
},
"TfsChangeSetMappingTool": {
"Enabled": true,
"ChangeSetMappingFile": ""
},
"TfsGitRepositoryTool": {
"Enabled": true,
"Mappings": null
}
}
}
}
Beta Was this translation helpful? Give feedback.
All reactions