From 7eaaebd9d7d8f65f2d4bc8b6a7b8c0335cae7bd9 Mon Sep 17 00:00:00 2001 From: David Lopes Date: Fri, 5 Dec 2025 23:32:56 +0000 Subject: [PATCH] feat(ci): reconcile repository CI configurations --- .github/labeler-config.yaml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/labeler-config.yaml b/.github/labeler-config.yaml index 1236d3a..5942530 100644 --- a/.github/labeler-config.yaml +++ b/.github/labeler-config.yaml @@ -1,17 +1,21 @@ version: 1 labels: + - label: "major" + title: "^\\w+(\\(\\w+\\))?!:\\s.+$" - label: "major" body: "^BREAKING CHANGE:.*$" - label: "minor" - title: "^feat(\\(\\w+\\)):\\s.+$" + title: "^feat(\\(\\w+\\))?:\\s.+$" - label: "patch" - title: "^(fix|chore|refactor|style|perf|test|docs|revert)(\\(\\w+\\)):\\s.+$" + title: "^(fix|chore|refactor|style|perf|test|docs|revert)(\\(\\w+\\))?:\\s.+$" - label: "fix" - title: "^fix(\\(\\w+\\)):\\s.+$" + title: "^fix(\\(\\w+\\))?:\\s.+$" - label: "feature" - title: "^feat(\\(\\w+\\)):\\s.+$" + title: "^feat(\\(\\w+\\))?:\\s.+$" - label: "chore" - title: "^(chore|refactor|style|perf|test|docs|revert)(\\(\\w+\\)):\\s.+$" + title: "^(chore|refactor|style|perf|test|docs|revert)(\\(\\w+\\))?:\\s.+$" + - label: "breaking-change" + title: "^\\w+(\\(\\w+\\))?!:\\s.+$" - label: "breaking-change" body: "^BREAKING CHANGE:.*$" - label: "ready-to-merge"