6 Commits
devel ... main

2 changed files with 5 additions and 3 deletions

View File

@ -251,7 +251,7 @@ class Git:
def add_gitea_remote(self, package): def add_gitea_remote(self, package):
repo_name = package.replace("+", "_") repo_name = package.replace("+", "_")
org_name = "rpm" org_name = "pool"
if not os.getenv("GITEA_TOKEN"): if not os.getenv("GITEA_TOKEN"):
logging.warning("Not adding a remote due to missing $GITEA_TOKEN") logging.warning("Not adding a remote due to missing $GITEA_TOKEN")

View File

@ -36,10 +36,12 @@ def listen_events():
and "package" in body and "package" in body
and body["project"] == "openSUSE:Factory" and body["project"] == "openSUSE:Factory"
): ):
if "/" in body["package"]: # Strip multibuild flavors
package = body["package"].partition(':')[0]
if "/" in package:
return return
(MY_TASKS_DIR / body["package"]).touch() (MY_TASKS_DIR / package).touch()
print(" [x] %r:%r" % (method.routing_key, body["package"])) print(" [x] %r:%r" % (method.routing_key, body["package"]))
channel.basic_consume(queue_name, callback, auto_ack=True) channel.basic_consume(queue_name, callback, auto_ack=True)