From dd31b6300489f9465c9ed479335722b1400a421b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20de=20la=20Pe=C3=B1a?= Date: Tue, 10 Dec 2024 17:00:42 +0100 Subject: [PATCH] chore: do not admit uppercase types --- .github/release-drafter.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index 62823686e8..b786b4945a 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -29,22 +29,22 @@ categories: autolabeler: - label: 'breaking change' title: - - '/^[a-z]+(\(.+\))?!\:/i' + - '/^[a-z]+(\(.+\))?!\:/' - label: 'security' title: - - '/^security(\(.+\))?!?\:/i' + - '/^security(\(.+\))?!?\:/' - label: 'feature' title: - - '/^feat(\(.+\))?!?\:/i' + - '/^feat(\(.+\))?!?\:/' - label: 'bug' title: - - '/^(fix|bug)(\(.+\))?!?\:/i' + - '/^(fix|bug)(\(.+\))?!?\:/' - label: 'documentation' title: - - '/^docs(\(.+\))?!?\:/i' + - '/^docs(\(.+\))?!?\:/' - label: 'chore' title: - - '/^chore(\(.+\))?!?\:/i' + - '/^chore(\(.+\))?!?\:/' - label: 'dependencies' title: - - '/^deps(\(.+\))?!?\:/i' + - '/^deps(\(.+\))?!?\:/'