Skip to content

Commit 6031fea

Browse files
committed
🔧(ci) update CHANGELOG check command
Replaced deprecated `git whatchanged` with `git log` in CHANGELOG check
1 parent ac4a589 commit 6031fea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
- run:
9494
name: Check that the CHANGELOG has been modified in the current branch
9595
command: |
96-
git whatchanged --name-only --pretty="" origin..HEAD | grep CHANGELOG
96+
git log --raw --name-only --pretty="" origin..HEAD | grep CHANGELOG
9797
9898
# Check that the CHANGELOG max line length does not exceed 80 characters
9999
lint-changelog:

0 commit comments

Comments
 (0)