ソースを参照

modify autolabeler settings

Yuki Takei 4 年 前
コミット
da7dbb830b
1 ファイル変更9 行追加9 行削除
  1. 9 9
      .github/release-drafter.yml

+ 9 - 9
.github/release-drafter.yml

@@ -20,23 +20,23 @@ change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add
 autolabeler:
   - label: 'feature'
     branch:
-      - '/feat\/.+/'
+      - '/^feat\/.+/'
   - label: 'improvement'
     branch:
-      - '/imprv\/.+/'
+      - '/^imprv\/.+/'
   - label: 'bug'
     branch:
-      - '/fix\/.+/'
+      - '/^fix\/.+/'
     title:
-      - '/fix/i'
+      - '/^fix/i'
   - label: 'support'
     branch:
-      - '/support\/.+/'
+      - '/^support\/.+/'
     title:
-      - '/chore/i'
-      - '/ci/i'
-      - '/docs/i'
-      - '/test/i'
+      - '/^chore/i'
+      - '/^ci/i'
+      - '/^docs/i'
+      - '/^test/i'
 
 exclude-labels:
   - 'exclude from changelog'