I have a linked service to a blob storage account in my ADF and what I'm finding is that when I delete the linked service from my azure datafactory (that is linked to my dev branch), that change is not getting picked up as file change when I merge my dev branch into my test branch (which still has the linked service).
I can see my commit under the commits tab on the merge window, so devops knows I've made a change, but the files tab doesn't show the linked service being removed.
Has anyone experienced this issue? and is there a way around it?
Further information:
Screenshots
Screenshot 1 showing the release branch with the linked service that we want to delete.
Screenshot 2 showing the dev branch with the linked service removed
Screenshots below showing the details of the pull request in azure devops,
Screenshot 3 shows the dev branch linked services folder (note the linked service that we dont want has been removed)
Screenshot 4 shows the release branch that still has the linked service that we are hoping to remove.
Screenshot 5 shows the merge request that does not have the removal of the linked service under the list of files.
Screen 6 showing that the commit where we removed the linked service is included in the branch history.
Thanks.






I can reproduce the same pull request appearance with you, it could happen with below steps:
In your dev branch, you don't have
deletemelinked service currently. then createdreleasebranch based on thedevbranch.Create
deletemelinked service onreleasebranch, which means release branch isaheadof dev now.Delete
pipeline1.jsonfromdevbranch, create pull request from dev to release branch.On
devbranch, createdeletemelinked service, then delete it.Pull request
filestab:Pull request
committab:In above, it was caused that the deleteme linked service on
releasebranch isaheadofdevbranch, when pull request is created, it won't list it in the Files tab.