Hello sai pavan,
If your requirement is to replace the dev URL with PROD on the release pipeline, you can simply use the override template parameters to replace the URL.
To parameterize the URL, Use the below block of code in the custom template-parameters-definition.json
{
"Microsoft.DataFactory/factories/pipelines": {
"properties": {
"activities": [{
"typeProperties": {
"url": "-"
}
}]
}
}
}
https://bhargavablog.com/2022/09/07/synapse-parametrize-url-at-activity-level/
How to use custom parameters:
https://learn.microsoft.com/en-us/azure/data-factory/continuous-integration-delivery-resource-manager-custom-parameters
I hope this helps. Please let me know if you have any further questions.