I have added a git submodule into the main project, which references the sub-project using a relative path. The .gitmodules looks like this:
[submodule "Shared"]
path = Shared
url = ../Shared
The Azure pipeline is configured to self checkout including the submodules:
File azure-pipelines.yaml
The build-pipeline fails on the checkout step, and gives the following error: Error
Extra information:
- Both repositories exist in the same organization and project.
- Both repositories are private.
- I have already checked if disabling the 'Limit job authorizaiton scope' in the organization- and projectsettings worked but unfortunately not.
Any ideas?
Edit: I hid the URLs in the error screenshot, however when I click those I do get a result of the repositories so it definitely exists.

