From 89b4bba981d75dde74a89b4f8d90ba14fc408c8a Mon Sep 17 00:00:00 2001 From: Eberhard Beilharz Date: Fri, 8 Jan 2021 15:52:31 +0100 Subject: [PATCH] chore: Update label patterns - add missing oem label - improve pattern to allow multiple scopes --- .github/labeler.yml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index dd98827234..05e8f1af3f 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -112,18 +112,20 @@ labels: - '^auto(\(|:)' # Below are the scopes that we look for in the PR title 'android/': - - '^.*\(android\):' + - '\(.*android.*\):' 'common/': - - '^.*\(common(/|\)):' + - '\(.*common.*\):' 'developer/': - - '^.*\(developer\):' + - '\(.*developer.*\):' 'ios/': - - '^.*\(ios\):' + - '\(.*ios.*\):' 'linux/': - - '^.*\(linux\):' + - '\(.*linux.*\):' 'mac/': - - '^.*\(mac\):' + - '\(.*mac.*\):' + 'oem/': + - '\(.*oem.*\):' 'web/': - - '^.*\(web\):' + - '\(.*web.*\):' 'windows/': - - '^.*\(windows\):' + - '\(.*windows.*\):'