From d34f9cf2468fc093c0dee22110fc82d183b00ac0 Mon Sep 17 00:00:00 2001 From: Gregor Martynus <39992+gr2m@users.noreply.github.com> Date: Thu, 26 Sep 2024 16:55:59 -0700 Subject: [PATCH] wrap label filter in quotes to prevent slack from replacing `:priority:` to an with emoji --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b4509303..00df99c4 100644 --- a/README.md +++ b/README.md @@ -163,7 +163,7 @@ This is an overview of the event types that are affected by the required-label f Create a filter with: ``` -/github subscribe owner/repo +label:priority:HIGH +/github subscribe owner/repo +label:"priority:HIGH" ``` This creates a required-label filter with the value `priority:HIGH`. @@ -201,8 +201,8 @@ To see the currently active filters use It is common to have certain special characters in labels. Therefore we added support for the most common special characters for label filters. Here a few examples: -* `label:priority:HIGH` -* `label:teams/designers` +* `label:"priority:HIGH"` +* `label:"teams/designers"` * `label:"DO NOT MERGE"` * `label:"very important"` * `label:":construction: WIP"`