From ad390aab225dee6442397db4afd45a8ed1325369 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Tue, 14 Dec 2021 16:31:02 +0530 Subject: [PATCH] fix: update docs link checker since docs are moved to wiki --- .github/helper/documentation.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/helper/documentation.py b/.github/helper/documentation.py index f8ee3fa10b..aece5f543b 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 + if parsed_url.netloc in ["docs.erpnext.com", "frappeframework.com"]: + return True if __name__ == "__main__":