mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
16 lines
477 B
JavaScript
16 lines
477 B
JavaScript
/**
|
|
* Check if MR has not an excessive numbers of commits (if squashed)
|
|
*
|
|
* @dangerjs INFO
|
|
*/
|
|
module.exports = function () {
|
|
const tooManyCommitThreshold = 2; // above this number of commits, squash commits is suggested
|
|
const mrCommits = danger.gitlab.commits;
|
|
|
|
if (mrCommits.length > tooManyCommitThreshold) {
|
|
return message(
|
|
`You might consider squashing your ${mrCommits.length} commits (simplifying branch history).`
|
|
);
|
|
}
|
|
};
|