let bot ignore issues with a no_bot_tag

- the tag can be specified in the config.yaml
- the tag can be placed in the issue description or any of its journals (comments)
This commit is contained in:
Marc Michalsky 2021-10-26 11:42:44 +02:00
parent edafcf7632
commit 5f63efebe1
2 changed files with 12 additions and 2 deletions

View file

@ -5,7 +5,7 @@ redmine:
version: ${REDMINE_VERSION} version: ${REDMINE_VERSION}
api_key: ${REDMINE_API_KEY} api_key: ${REDMINE_API_KEY}
issue_closed_id: 5 # Id of the "closed" status issue_closed_id: 5 # Id of the "closed" status
no_bot_tag: "#nobot" # a tag that signals bot not to handle an issue
actions: actions:

12
main.py
View file

@ -9,7 +9,6 @@ from jinja2 import Template
def treat_issues(): def treat_issues():
dir_path = os.path.dirname(os.path.realpath(__file__)) + '/' dir_path = os.path.dirname(os.path.realpath(__file__)) + '/'
# Set up logging # Set up logging
@ -25,6 +24,7 @@ def treat_issues():
url = config['redmine']['url'] url = config['redmine']['url']
version = config['redmine']['version'] version = config['redmine']['version']
api_key = config['redmine']['api_key'] api_key = config['redmine']['api_key']
no_bot_tag = config['redmine']['no_bot_tag']
actions = config['actions'] actions = config['actions']
logging.getLogger().setLevel(config['logging']['level'].upper()) logging.getLogger().setLevel(config['logging']['level'].upper())
except Exception as e: except Exception as e:
@ -49,6 +49,16 @@ def treat_issues():
for issue in redmine.issue \ for issue in redmine.issue \
.filter(updated_on=f"><{action['start_date']}|{end_date.isoformat()}") \ .filter(updated_on=f"><{action['start_date']}|{end_date.isoformat()}") \
.filter(project__name__in=action['projects'], status__name__in=action['status'], closed_on=None): .filter(project__name__in=action['projects'], status__name__in=action['status'], closed_on=None):
# Skip issue if a no_bot_tag is found in the issue description or any of its journals
def find_no_bot_tag_in_journals(journals):
for journal in journals:
if no_bot_tag in journal.notes:
return True
return False
if no_bot_tag in issue.description or find_no_bot_tag_in_journals(issue.journals):
continue
with open(f"{dir_path}templates/{action['template']}", newline='\r\n') as f: with open(f"{dir_path}templates/{action['template']}", newline='\r\n') as f:
content = f.read() content = f.read()
template = Template(content) template = Template(content)