From 28d6ff324e8ef5c480476e0cf1180eb32a62aa3e Mon Sep 17 00:00:00 2001 From: EttyKitty <20323032+EttyKitty@users.noreply.github.com> Date: Fri, 22 Nov 2024 05:12:56 +0300 Subject: [PATCH] ci: Labeler will be fixed, one day (#161) --- .github/srvaroa_labeler.yml | 22 +++++++++++----------- .github/workflows/labeler.yml | 1 + 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/.github/srvaroa_labeler.yml b/.github/srvaroa_labeler.yml index 07b7f7102..5d425de58 100644 --- a/.github/srvaroa_labeler.yml +++ b/.github/srvaroa_labeler.yml @@ -1,45 +1,45 @@ version: 1 appendOnly: true labels: -- label: "PR: Breaking\!" - title: "\!" -- label: "PR: Breaking\!" - body: "(?i)\[breaking\]" +- label: "PR: Breaking!" + title: "\\!" +- label: "PR: Breaking!" + body: "(?i)\\[breaking\\]" - label: "PR: Chore" title: "^chore" - label: "PR: Chore" - body: "(?i)\[chore\]" + body: "(?i)\\[chore\\]" - label: "PR: Docs" title: "^docs" - label: "PR: Docs" - body: "(?i)(\[docs\]|\[doc\])" + body: "(?i)(\\[docs\]|\\[doc\\])" - label: "PR: Code Style" title: "^style" - label: "PR: Code Style" - body: "(?i)\[style\]" + body: "(?i)\\[style\\]" - label: "PR: Feature" title: "^feat" - label: "PR: Feature" - body: "(?i)(\[feature\]|\[feat\])" + body: "(?i)(\\[feature\\]|\\[feat\\])" - label: "PR: Fix" title: "^fix" - label: "PR: Fix" - body: "(?i)\[fix\]" + body: "(?i)\\[fix\\]" - label: "PR: Refactor" title: "^refactor" - label: "PR: Refactor" - body: "(?i)(\[refactor\]|\[ref\])" + body: "(?i)(\\[refactor\\]|\\[ref\\])" - label: "PR: Performance" title: "^perf" - label: "PR: Performance" - body: "(?i)(\[performance\]|\[perf\])" + body: "(?i)(\\[performance\\]|\\[perf\\])" - label: "PR: Major Coding" size: diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 897511fd7..ff4c47c2b 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -29,3 +29,4 @@ jobs: GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" with: config_path: .github/srvaroa_labeler.yml + fail_on_error: true