Skip to content

Commit

Permalink
Make this clear in the logs
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphbean committed Apr 12, 2024
1 parent 8af282f commit 1485341
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/rules/team/due_date.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def check_due_date(
program = env.program(env.compile(ignore))
if program.evaluate(issue_as_cel(issue)):
context["updates"].append(
f"! Ignoring {issue.key} for due date rule, per cel expression {ignore}."
f"! Ignoring {issue.key} for due date rule, per cel expression: {ignore}."
)
return

Expand Down
2 changes: 1 addition & 1 deletion src/rules/team/parent.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def check_parent_link(
program = env.program(env.compile(ignore))
if program.evaluate(issue_as_cel(issue)):
context["updates"].append(
f"! Ignoring {issue.key} for parent link rule, per cel expression {ignore}."
f"! Ignoring {issue.key} for parent link rule, per cel expression: {ignore}."
)
return
if issue.raw["Context"]["Related Issues"]["Parent"] is None:
Expand Down

0 comments on commit 1485341

Please sign in to comment.