mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
dc5d4b0ac0
For role/check 'mrSourceBranchName' changed the output severity to warn (was info)
32 lines
987 B
JavaScript
32 lines
987 B
JavaScript
const { recordRuleExitStatus } = require("./configParameters.js");
|
|
|
|
/**
|
|
* Check if MR Title contains prefix "WIP: ...".
|
|
*
|
|
* @dangerjs WARN
|
|
*/
|
|
module.exports = function () {
|
|
const ruleName = 'Merge request not in Draft or WIP state';
|
|
const mrTitle = danger.gitlab.mr.title;
|
|
const regexes = [
|
|
{ prefix: "WIP", regex: /^WIP:/i },
|
|
{ prefix: "W.I.P", regex: /^W\.I\.P/i },
|
|
{ prefix: "[WIP]", regex: /^\[WIP/i },
|
|
{ prefix: "[W.I.P]", regex: /^\[W\.I\.P/i },
|
|
{ prefix: "(WIP)", regex: /^\(WIP/i },
|
|
{ prefix: "(W.I.P)", regex: /^\(W\.I\.P/i },
|
|
];
|
|
|
|
for (const item of regexes) {
|
|
if (item.regex.test(mrTitle)) {
|
|
recordRuleExitStatus(ruleName, "Failed");
|
|
return warn(
|
|
`Please remove the \`${item.prefix}\` prefix from the MR name before merging this MR.`
|
|
);
|
|
}
|
|
}
|
|
|
|
// At this point, the rule has passed
|
|
recordRuleExitStatus(ruleName, "Passed");
|
|
};
|