From 0eeeca687c32750afad1aa3c56204879ff8fb722 Mon Sep 17 00:00:00 2001 From: Dawid Dziurla Date: Wed, 29 Jul 2020 09:11:05 +0200 Subject: [PATCH] workflows: tighten regexes for labelling (#58752) --- .github/workflows/autolabel.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/autolabel.yml b/.github/workflows/autolabel.yml index b063187ee7a..b05ed32fe4a 100644 --- a/.github/workflows/autolabel.yml +++ b/.github/workflows/autolabel.yml @@ -27,14 +27,14 @@ jobs: }, { "label": "bottle unneeded", "path": "Formula/.+", - "content": "bottle :unneeded" + "content": "\n bottle :unneeded\n" }, { "label": "formula deprecated", "path": "Formula/.+", - "content": "deprecate!" + "content": "\n deprecate!.*\n" }, { "label": "formula disabled", "path": "Formula/.+", - "content": "disable!" + "content": "\n disable!\n" } ]