From 5596988c94527509a847e9df055d1cfc996181c4 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Tue, 7 Sep 2021 14:53:30 +0530 Subject: [PATCH] ci: fix docs checker for wiki based docs (#27380) --- .github/helper/documentation.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/helper/documentation.py b/.github/helper/documentation.py index 91983d3eae5e..378983e95f2a 100644 --- a/.github/helper/documentation.py +++ b/.github/helper/documentation.py @@ -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__":