From c99f784d110eb36166bb8d0772eb0466ab11b2ce Mon Sep 17 00:00:00 2001 From: alyssawilk Date: Wed, 26 Jan 2022 12:17:18 -0500 Subject: [PATCH] fix (#2025) Signed-off-by: Alyssa Wilk --- .github/actions/pr_notifier/pr_notifier.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/pr_notifier/pr_notifier.py b/.github/actions/pr_notifier/pr_notifier.py index 7efbecea70..2662fe9608 100644 --- a/.github/actions/pr_notifier/pr_notifier.py +++ b/.github/actions/pr_notifier/pr_notifier.py @@ -170,5 +170,5 @@ def post_to_oncall(client, out_slo_prs): sys.exit(1) client = WebClient(token=SLACK_BOT_TOKEN) - post_to_oncall(client, reviewers_and_messages['unassigned'], stalled_prs) + post_to_oncall(client, stalled_prs) post_to_assignee(client, reviewers_and_messages, REVIEWERS)