Merge pull request #547 from wengel/ignore_patchinfo

Ignore package patchinfo for checking
This commit is contained in:
Ludwig Nussel 2016-08-05 16:01:40 +02:00 committed by GitHub
commit fdd2c8df07

View File

@ -190,6 +190,10 @@ class ReviewBot(object):
def check_action_maintenance_incident(self, req, a):
dst_package = a.src_package
# Ignoring patchinfo package for checking
if a.src_package == 'patchinfo':
self.logger.info("package is patchinfo, ignoring")
return None
# dirty obs crap
if a.tgt_releaseproject is not None:
ugly_suffix = '.'+a.tgt_releaseproject.replace(':', '_')