We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e7ec45 commit 1db4918Copy full SHA for 1db4918
buildbot_nix/buildbot_nix/gitlab_project.py
@@ -100,7 +100,10 @@ def name(self) -> str:
100
101
@property
102
def url(self) -> str:
103
- return self.data.web_url
+ # Not `web_url`: the buildbot gitlab hook dialect uses repository.url which seems
104
+ # to be the ssh url in practice.
105
+ # See: https://github.com/buildbot/buildbot/blob/master/master/buildbot/www/hooks/gitlab.py#L271
106
+ return self.data.ssh_url_to_repo
107
108
109
def project_id(self) -> str:
0 commit comments