Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion automations/close_the_loop_with_reporter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,15 @@ description: "Automatically notify the reporter when a report is classified."
type: "triage_rule"
triage_classification_changes: true
triage_abuse_reports: true
triage_asa_complete: true
default_actions: ["send_user_report_results"]
source: (triage.trigger == "abuse_report" or triage.user_reports.count > 0) and triage.classification.classification is not null
source: |
triage.classification.classification is not null and
(
(triage.trigger == "abuse_report" or triage.user_reports.count > 0)
or
(
triage.trigger in ("asa_complete", "classification_change")
and triage.user_reports.count > 0
)
)
Loading