Push to the remote when the repo changed

This commit is contained in:
Stephan Kulow
2022-11-08 09:22:32 +01:00
parent 86490b51dd
commit 9f6c8f62e7
2 changed files with 13 additions and 0 deletions

View File

@@ -214,3 +214,14 @@ class Git:
print(response.data)
url = f"gitea@gitea.opensuse.org:{org_name}/{repo_name}.git"
self.repo.remotes.create("origin", url)
def push(self):
remo = self.repo.remotes["origin"]
keypair = pygit2.KeypairFromAgent("gitea")
callbacks = pygit2.RemoteCallbacks(credentials=keypair)
refspecs = ["refs/heads/factory"]
if "refs/heads/devel" in self.repo.references:
refspecs.append("refs/heads/devel")
remo.push(refspecs, callbacks=callbacks)