Skip to content

Commit

Permalink
improve getCommitLog
Browse files Browse the repository at this point in the history
  • Loading branch information
kobenguyent committed Feb 13, 2024
1 parent 53773b9 commit 8e8d02d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runok.js
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ ${changelog}`;

async getCommitLog() {
console.log('Gathering commits...');
const logs = await exec('git log --pretty=\'format:* %s - by @%aN\' $(git describe --abbrev=0 --tags)..HEAD');
const logs = await exec('git log --grep "chore(deps" --invert-grep --pretty=\'format:* %s - by @%aN\' $(git describe --abbrev=0 --tags)..HEAD | grep "DOC: " -v');
console.log(logs.data.stdout);
},

Expand Down

0 comments on commit 8e8d02d

Please sign in to comment.