Skip to content

Commit

Permalink
feat: disable annotations by default (#717)
Browse files Browse the repository at this point in the history
  • Loading branch information
joseph-sentry committed Sep 18, 2024
1 parent 80952af commit 6ecd3ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/notification/notifiers/checks/patch.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ async def build_payload(self, comparison: Comparison):
checks_yaml_field = read_yaml_field(self.current_yaml, ("github_checks",))

should_annotate = (
checks_yaml_field.get("annotations", True)
checks_yaml_field.get("annotations", False)
if checks_yaml_field is not None
else True
)
Expand Down

0 comments on commit 6ecd3ba

Please sign in to comment.