Skip to content

Commit

Permalink
修改issue-checker匹配
Browse files Browse the repository at this point in the history
  • Loading branch information
donjuanplatinum committed Jun 9, 2024
1 parent 151c2e6 commit e42ea66
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/issue-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,39 +20,39 @@ labels:

- name: enhance
content: enhancement
regexes: '[Ff]eat(?:\([a-zA-Z]*/?[a-zA-Z]*\))?[\:\.\,]'
regexes: '[Ff]eat(?:\([^)]*\))?[\:\.\,]'
skip-if:
- skip all
remove-if:
- remove all
# `Bug fix`
- name: bug-fix
content: Bug fix
regexes: '[Ff]ix(?:\([a-zA-Z]*/?[a-zA-Z]*\))?[\:\.\,]'
regexes: '[Ff]ix(?:\([^)]*\))?[\:\.\,]'
skip-if:
- skip all
remove-if:
- remove all
# `document`
- name: doc
content: documentation
regexes: '[Dd]ocs(?:\([a-zA-Z]*/?[a-zA-Z]*\))?[\:\.\,]'
regexes: '[Dd]ocs(?:\([^)]*\))?[\:\.\,]'
skip-if:
- skip all
remove-if:
- remove all
# `test`
- name: test
content: test
regexes: '[Tt]est(?:\([a-zA-Z]*/?[a-zA-Z]*\))?[\:\.\,]'
regexes: '[Tt]est(?:\([^)]*\))?[\:\.\,]'
skip-if:
- skip all
remove-if:
- remove all
# 工具链等修改
- name: build
content: build
regexes: '[Bb]uild(?:\([a-zA-Z]*/?[a-zA-Z]*\))?[\:\.\,]'
regexes: '[Bb]uild(?:\([^)]*\))?[\:\.\,]'
skip-if:
- skip all
remove-if:
Expand All @@ -61,7 +61,7 @@ labels:
# ci持续集成修改
- name: ci
content: ci
regexes: '[Cc]i(?:\([a-zA-Z]*/?[a-zA-Z]*\))?[\:\.\,]'
regexes: '[Cc]i(?:\([^)]*\))?[\:\.\,]'
skip-if:
- skip all
remove-if:
Expand All @@ -71,7 +71,7 @@ labels:
# 代码样式缩进等
- name: style
content: style
regexes: '[Ss]tyle(?:\([a-zA-Z]*/?[a-zA-Z]*\))?[\:\.\,]'
regexes: '[Ss]tyle(?:\([^)]*\))?[\:\.\,]'
skip-if:
- skip all
remove-if:
Expand All @@ -80,7 +80,7 @@ labels:
# 重构代码结构
- name: refactor
content: refactor
regexes: '[rR]factor(?:\([a-zA-Z]*/?[a-zA-Z]*\))?[\:\.\,]'
regexes: '[rR]factor(?:\([^)]*\))?[\:\.\,]'
skip-if:
- skip all
remove-if:
Expand All @@ -89,7 +89,7 @@ labels:
# 性能优化
- name: perf
content: perf
regexes: '[pP]erf(?:\([a-zA-Z]*/?[a-zA-Z]*\))?[\:\.\,]'
regexes: '[pP]erf(?:\([^)]*\))?[\:\.\,]'
skip-if:
- skip all
remove-if:
Expand Down

0 comments on commit e42ea66

Please sign in to comment.