From 6d7c0a0e3008a1ad85b92281063c8cf58d715b4a Mon Sep 17 00:00:00 2001 From: Simon Baird Date: Tue, 23 Apr 2024 14:11:00 -0400 Subject: [PATCH] Add check_rank automation for Enterprise Contract Introduces a config file for EC. The main motivation is to include the check_rank automation as suggested by KONFLUX-2392. I'm not confident that we want the other available checks, (for example we do have stories without epics, and epics without parent features, and we do choose our own priority for bugs and stories when grooming), so I'm just adding the `check_rank` option to begin with. However we don't do much ranking currently, so I think it's safe to try letting the automation do some ranking for us. (See config/template.yaml for the other automations available.) Ref: https://issues.redhat.com/browse/EC-578 Ref: https://issues.redhat.com/browse/KONFLUX-2392 --- config/ec.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 config/ec.yaml diff --git a/config/ec.yaml b/config/ec.yaml new file mode 100644 index 0000000..897b033 --- /dev/null +++ b/config/ec.yaml @@ -0,0 +1,18 @@ +--- +jira: + # url: https://issues.redhat.com + project-id: EC +team_automation: + issues: + Epic: + # collector: get_issues + rules: [] + group_rules: + - check_rank + Story: + # collector: get_issues + # Todo: Consider using the filter used by the scrum board, + # https://issues.redhat.com/issues/?filter=12422356 + rules: [] + group_rules: + - check_rank