Check if we are actually the repo for the specified build when PR info is in the request

This commit is contained in:
Marvin Pohl 2021-07-05 13:17:29 +02:00
parent 8decb35652
commit de9d594758
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ class Gitea(Git):
@defer.inlineCallbacks
def _fetch(self, arg):
res = yield super(Gitea, self)._fetch(arg)
if self.build.hasProperty("pr_id"):
if self.build.hasProperty("pr_id") and self.repourl == self.build.getProperty("base_git_ssh_url", None):
remote = yield self._dovccmd(
['config', 'remote.pr_source.url'], collectStdout=True, abandonOnFailure=False)
if remote is None or remote.strip() is '':
@ -30,4 +30,4 @@ class Gitea(Git):
self.build.getProperty("head_git_ssh_url", None)])
yield self._dovccmd(['fetch', 'pr_source'])
res = yield self._dovccmd(['merge', self.build.getProperty("head_sha", None)])
defer.returnValue(res)
defer.returnValue(res)