Filter out azure-docs-pr repos

This commit is contained in:
Gene Hazan 2018-11-28 11:13:01 -08:00
Родитель 34748e9cc1
Коммит 31447f884a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -589,7 +589,7 @@ class Crawler {
// This is currently Microsoft-specific. https://github.com/Microsoft/ghcrawler/issues/109
_testRegex(request) {
const patterns = [/[.|-]handoff/, /handback/, /\/azure-content-/, /\/acom\//];
const patterns = [/[.|-]handoff/, /handback/, /\/azure-content-/, /\/azure-docs-pr/, /\/acom\//];
return patterns.some(pattern => pattern.test(request.url));
}