Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package openSUSE-release-tools for openSUSE:Factory checked in at 2021-09-17 23:25:59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/openSUSE-release-tools (Old) and /work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "openSUSE-release-tools" Fri Sep 17 23:25:59 2021 rev:327 rq:919657 version:20210916.1cb39a18 Changes: -------- --- /work/SRC/openSUSE:Factory/openSUSE-release-tools/openSUSE-release-tools.changes 2021-09-16 23:17:46.555991121 +0200 +++ /work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.1899/openSUSE-release-tools.changes 2021-09-17 23:26:19.833256458 +0200 @@ -1,0 +2,6 @@ +Thu Sep 16 14:32:47 UTC 2021 - opensuse-releaset...@opensuse.org + +- Update to version 20210916.1cb39a18: + * rabbit-openqa.py: Ignore PR verification runs with / in BUILD + +------------------------------------------------------------------- Old: ---- openSUSE-release-tools-20210916.57abe572.obscpio New: ---- openSUSE-release-tools-20210916.1cb39a18.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ openSUSE-release-tools.spec ++++++ --- /var/tmp/diff_new_pack.oONc9u/_old 2021-09-17 23:26:20.525257075 +0200 +++ /var/tmp/diff_new_pack.oONc9u/_new 2021-09-17 23:26:20.529257079 +0200 @@ -20,7 +20,7 @@ %define source_dir openSUSE-release-tools %define announcer_filename factory-package-news Name: openSUSE-release-tools -Version: 20210916.57abe572 +Version: 20210916.1cb39a18 Release: 0 Summary: Tools to aid in staging and release work for openSUSE/SUSE License: GPL-2.0-or-later AND MIT ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.oONc9u/_old 2021-09-17 23:26:20.561257108 +0200 +++ /var/tmp/diff_new_pack.oONc9u/_new 2021-09-17 23:26:20.565257111 +0200 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/openSUSE/openSUSE-release-tools.git</param> - <param name="changesrevision">57abe5728ba9b9f1d88bbf7ba4caff787c4303d9</param> + <param name="changesrevision">1cb39a18350f6ade62c4f02e8914c6f0f1b72c56</param> </service> </servicedata> ++++++ openSUSE-release-tools-20210916.57abe572.obscpio -> openSUSE-release-tools-20210916.1cb39a18.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/openSUSE-release-tools-20210916.57abe572/gocd/rabbit-openqa.py new/openSUSE-release-tools-20210916.1cb39a18/gocd/rabbit-openqa.py --- old/openSUSE-release-tools-20210916.57abe572/gocd/rabbit-openqa.py 2021-09-16 15:32:49.000000000 +0200 +++ new/openSUSE-release-tools-20210916.1cb39a18/gocd/rabbit-openqa.py 2021-09-16 16:29:36.000000000 +0200 @@ -214,7 +214,9 @@ 'scope': 'current', 'latest': '1', } - return self.openqa.openqa_request('GET', 'jobs', values)['jobs'] + jobs = self.openqa.openqa_request('GET', 'jobs', values)['jobs'] + # Ignore PR verification runs + return [job for job in jobs if '/' not in job['settings']['BUILD']] def get_step_url(self, testurl, modulename): failurl = testurl + '/modules/{!s}/fails'.format(quote_plus(modulename)) @@ -244,7 +246,10 @@ if method.routing_key == '{}.obs.repo.published'.format(amqp_prefix): self.on_published_repo(json.loads(body)) elif re.search(r'.openqa.', method.routing_key): - self.on_openqa_job(json.loads(body).get('ISO')) + data = json.loads(body) + if '/' in data.get('BUILD'): + return # Ignore PR verification runs + self.on_openqa_job(data.get('ISO')) else: self.logger.warning("unknown rabbitmq message {}".format(method.routing_key)) ++++++ openSUSE-release-tools.obsinfo ++++++ --- /var/tmp/diff_new_pack.oONc9u/_old 2021-09-17 23:26:21.237257711 +0200 +++ /var/tmp/diff_new_pack.oONc9u/_new 2021-09-17 23:26:21.241257714 +0200 @@ -1,5 +1,5 @@ name: openSUSE-release-tools -version: 20210916.57abe572 -mtime: 1631799169 -commit: 57abe5728ba9b9f1d88bbf7ba4caff787c4303d9 +version: 20210916.1cb39a18 +mtime: 1631802576 +commit: 1cb39a18350f6ade62c4f02e8914c6f0f1b72c56