Skip to content

Commit

Permalink
Exclude SOA epics from check_due_date rule
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphbean committed Apr 26, 2024
1 parent 03a9c04 commit d0cffcd
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 6 deletions.
7 changes: 6 additions & 1 deletion config/devhas.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@ team_automation:
# This rule attempts to propagate the "Normal" priority down to
# DEVHAS, and fails.
# - check_priority
- check_due_date
- rule: check_due_date
kwargs:
# This is a CEL expression
# Ignore DEVHAS-606; it gets its own due date
ignore: >
.key in ["DEVHAS-606"]
- check_target_dates
group_rules:
- check_rank
Expand Down
7 changes: 6 additions & 1 deletion config/kfluxinfra.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@ team_automation:
rules:
- check_parent_link
- check_priority
- check_due_date
- rule: check_due_date
kwargs:
# This is a CEL expression
# Ignore KFLUXINFRA-34; it gets its own due date
ignore: >
.key in ["KFLUXINFRA-34"]
- check_target_dates
group_rules:
- check_rank
Expand Down
7 changes: 6 additions & 1 deletion config/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@ team_automation:
rules:
- check_parent_link
- check_priority
- check_due_date
- rule: check_due_date
kwargs:
# This is a CEL expression
# Ignore RELEASE-852; it gets its own due date
ignore: >
.key in ["RELEASE-852"]
- check_target_dates
group_rules:
- check_rank
Expand Down
7 changes: 6 additions & 1 deletion config/rhtapwatch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@ team_automation:
# This is a CEL expression
ignore: '"orphan" in .labels'
- check_priority
- check_due_date
- rule: check_due_date
kwargs:
# This is a CEL expression
# Ignore RHTAPWATCH-743; it gets its own due date
ignore: >
.key in ["RHTAPWATCH-743"]
- check_target_dates
group_rules:
- check_rank
Expand Down
7 changes: 6 additions & 1 deletion config/stoneintg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@ team_automation:
rules:
- check_parent_link
- check_priority
- check_due_date
- rule: check_due_date
kwargs:
# This is a CEL expression
# Ignore STONEINTG-767; it gets its own due date
ignore: >
.key in ["STONEINTG-767"]
- check_target_dates
group_rules:
- check_rank
Expand Down
7 changes: 6 additions & 1 deletion config/svpi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@ team_automation:
rules:
- check_parent_link
- check_priority
- check_due_date
- rule: check_due_date
kwargs:
# This is a CEL expression
# Ignore SVPI-730; it gets its own due date
ignore: >
.key in ["SVPI-730"]
- check_target_dates
- set_fix_version
group_rules:
Expand Down

0 comments on commit d0cffcd

Please sign in to comment.