workflows: tighten regexes for labelling (#58752)

master
Dawid Dziurla 2020-07-29 09:11:05 +02:00 committed by GitHub
parent bf54546c5a
commit 0eeeca687c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -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"
}
]