kopia lustrzana https://github.com/espressif/esp-idf
20 wiersze
676 B
TypeScript
20 wiersze
676 B
TypeScript
import { DangerDSLType, DangerResults } from "danger";
|
|
declare const danger: DangerDSLType;
|
|
declare const warn: (message: string, results?: DangerResults) => void;
|
|
|
|
/**
|
|
* Check if pull request has has a sufficiently accurate description
|
|
*
|
|
* @dangerjs WARN
|
|
*/
|
|
export default function (): void {
|
|
const prDescription: string = danger.github.pr.body;
|
|
const shortPrDescriptionThreshold: number = 100; // Description is considered too short below this number of characters
|
|
|
|
if (prDescription.length < shortPrDescriptionThreshold) {
|
|
return warn(
|
|
"The PR description looks very brief, please check if more details can be added."
|
|
);
|
|
}
|
|
}
|