ci: fix docs checker for wiki based docs (#27380)

This commit is contained in:
Ankush Menat
2021-09-07 14:53:30 +05:30
committed by GitHub
parent 61a1356109
commit 5596988c94

View File

@@ -24,6 +24,8 @@ def docs_link_exists(body):
parts = parsed_url.path.split('/')
if len(parts) == 5 and parts[1] == "frappe" and parts[2] in docs_repos:
return True
elif parsed_url.netloc == "docs.erpnext.com":
return True
if __name__ == "__main__":