From ba7cb0743888117e21c40c284fe2cfa1ceafb3fd Mon Sep 17 00:00:00 2001 From: GaoNeng-wWw Date: Sat, 7 Sep 2024 10:28:35 +0800 Subject: [PATCH] fix(auto-label): version undefined --- .github/labeler.yaml | 36 +++++++++++++++++++----------------- 1 file changed, 19 insertions(+), 17 deletions(-) diff --git a/.github/labeler.yaml b/.github/labeler.yaml index bf751f394..36684dba9 100644 --- a/.github/labeler.yaml +++ b/.github/labeler.yaml @@ -1,30 +1,32 @@ +version: v1 + labels: - - label: 'enhancement' + - label: "enhancement" sync: true matcher: - title: '^feat.*: ?.*' - commit: '^feat.*: ?.*' - - label: 'bug' + title: "^feat.*: ?.*" + commit: "^feat.*: ?.*" + - label: "bug" sync: true matcher: - title: '^fix.*: ?.*' - commit: '^fix.*: ?.*' - - label: 'documentation' + title: "^fix.*: ?.*" + commit: "^fix.*: ?.*" + - label: "documentation" sync: true matcher: - title: '^docs?: ?.*' - commit: '^docs?: ?.*' - - label: 'refactoring' + title: "^docs?: ?.*" + commit: "^docs?: ?.*" + - label: "refactoring" sync: true matcher: - title: '^refactor.*: ?.*' - commit: '^refactor.*: ?.*' - - label: 'chore' + title: "^refactor.*: ?.*" + commit: "^refactor.*: ?.*" + - label: "chore" sync: true matcher: - title: '^chore.*: ?.*' - commit: '^chore.*: ?.*' - - label: 'ospp-2024' + title: "^chore.*: ?.*" + commit: "^chore.*: ?.*" + - label: "ospp-2024" sync: true matcher: - baseBranch: '^ospp-2024/.*' + baseBranch: "^ospp-2024/.*"