Skip to content

Commit 812774f

Browse files
committed
chore(ci): remove perf type from commit message validation
1 parent acd0ed1 commit 812774f

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

docs/contributing/git-commit-guide.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ Fixes #123
6262
| `docs` | Documentation only | `docs(readme): update setup instructions` |
6363
| `style` | Code style (no logic changes) | `style: reformat settings screen` |
6464
| `refactor` | Code changes (no features/fixes) | `refactor(nav): simplify stack setup` |
65-
| `perf` | Performance improvements | `perf(list): cache adapter lookups` |
6665
| `test` | Adding/editing tests | `test(api): add unit test for login` |
6766
| `chore` | Tooling, CI, dependencies | `chore(ci): update GitHub Actions config` |
6867
| `build` | Build system changes | `build(gradle): raise JVM target` |

scripts/ci/pr-sentinel/checks.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# command substitution — single quotes are intentional.
77
# shellcheck disable=SC2016
88

9-
COMMIT_MESSAGE_TYPES_REGEX='feat|fix|docs|style|refactor|perf|test|chore|build|ci|revert'
9+
COMMIT_MESSAGE_TYPES_REGEX='feat|fix|docs|style|refactor|test|chore|build|ci|revert'
1010
COMMIT_MESSAGE_SCOPE_REGEX='\([a-zA-Z0-9._ -/:]+\)'
1111

1212
check_title() {

0 commit comments

Comments
 (0)