Skip to content

Commit 6843dca

Browse files
committed
fix
1 parent 4ba2f7a commit 6843dca

File tree

1 file changed

+1
-1
lines changed
  • .github/actions/breaking-pr-check

1 file changed

+1
-1
lines changed

.github/actions/breaking-pr-check/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ function checkDescription(body, labels) {
4040
const [firstLine, secondLine] = body.split(/\r?\n/);
4141

4242
if (!firstLine || !/^BREAKING CHANGE:/.test(firstLine)) {
43-
raiseError(`Breaking change PR body should starts with "BREAKING CHANGE:"`);
43+
raiseError(`Breaking change PR body should start with "BREAKING CHANGE:"`);
4444
}
4545
if (!secondLine) {
4646
raiseError(`The description of breaking change is missing.`);

0 commit comments

Comments
 (0)