From 3080fb714f11d28d8d3468548d4fa8a41e671a11 Mon Sep 17 00:00:00 2001 From: Yih-Dar <2521628+ydshieh@users.noreply.github.com> Date: Fri, 21 Apr 2023 11:23:16 +0200 Subject: [PATCH] Fix Slack report for Nightly CI and Past CI (#22901) fix Co-authored-by: ydshieh --- utils/notification_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/notification_service.py b/utils/notification_service.py index adb904077ca..78ad45df395 100644 --- a/utils/notification_service.py +++ b/utils/notification_service.py @@ -958,7 +958,7 @@ if __name__ == "__main__": "Torch CUDA extension tests": "run_tests_torch_cuda_extensions_gpu_test_reports", } - if ci_event == "push": + if ci_event in ["push", "Nightly CI"] or ci_event.startswith("Past CI"): del additional_files["Examples directory"] del additional_files["PyTorch pipelines"] del additional_files["TensorFlow pipelines"]