From 2c2c583fbc25a942445eff33212c4cfe62a0f242 Mon Sep 17 00:00:00 2001 From: Balaji Veeramani Date: Mon, 7 Aug 2023 13:54:09 -0500 Subject: [PATCH] [CI] Fix typo in Semgrep config (#38175) #38126 attempted to correct an unnecessary newline in the error message. But, the updated error message is missing quotes. As a result, the CI is always passing. Signed-off-by: Balaji Veeramani Signed-off-by: harborn --- semgrep.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/semgrep.yml b/semgrep.yml index 9ac3ab320fe377..1efca58fa7e35d 100644 --- a/semgrep.yml +++ b/semgrep.yml @@ -23,6 +23,6 @@ rules: languages: - generic - message: Don't use 'code-block:: python', it's not tested! Use 'testcode' instead! For more information, see https://docs.ray.io/en/master/ray-contribute/writing-code-snippets.html. + message: "Don't use 'code-block:: python', it's not tested! Use 'testcode' instead! For more information, see https://docs.ray.io/en/master/ray-contribute/writing-code-snippets.html." pattern: "code-block:: python" severity: ERROR