Skip to content

Commit

Permalink
Merge pull request #1844 from nikomatsakis/patch-1
Browse files Browse the repository at this point in the history
only update zulip when tracking issues are opened
  • Loading branch information
jackh726 authored Sep 17, 2024
2 parents 7735802 + 3f2e073 commit f563bc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/handlers/project_goals.rs
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ pub async fn handle(ctx: &Context, event: &Event) -> anyhow::Result<()> {
issue,
..
}) => {
if issue.labels.iter().any(|l| l.name == C_TRACKING_ISSUE) {
if !issue.labels.iter().any(|l| l.name == C_TRACKING_ISSUE) {
return Ok(());
}
let zulip_topic_name = zulip_topic_name(issue);
Expand Down

0 comments on commit f563bc9

Please sign in to comment.