From cfbe222607ecd1f08d82a9c260501741827e57f0 Mon Sep 17 00:00:00 2001 From: Abdulaziz Aloqeely <52792999+Aloqeely@users.noreply.github.com> Date: Sat, 27 Apr 2024 20:14:41 +0300 Subject: [PATCH 1/2] CI: fix CI failure for PDEP with status: Draft --- web/pandas_web.py | 1 + 1 file changed, 1 insertion(+) diff --git a/web/pandas_web.py b/web/pandas_web.py index aac07433f2712..c56638876627f 100755 --- a/web/pandas_web.py +++ b/web/pandas_web.py @@ -280,6 +280,7 @@ def roadmap_pdeps(context): PDEP's in different status from the directory tree and GitHub. """ KNOWN_STATUS = { + "Draft", "Under discussion", "Accepted", "Implemented", From d12d9e593c38167628cfbe038d969b8dc6d6f885 Mon Sep 17 00:00:00 2001 From: Abdulaziz Aloqeely <52792999+Aloqeely@users.noreply.github.com> Date: Tue, 16 Jul 2024 15:29:39 +0300 Subject: [PATCH 2/2] Exclude draft PDEPs --- web/pandas_web.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/pandas_web.py b/web/pandas_web.py index c56638876627f..b3872b829c73a 100755 --- a/web/pandas_web.py +++ b/web/pandas_web.py @@ -320,7 +320,7 @@ def roadmap_pdeps(context): github_repo_url = context["main"]["github_repo_url"] resp = requests.get( "https://api.github.com/search/issues?" - f"q=is:pr is:open label:PDEP repo:{github_repo_url}", + f"q=is:pr is:open label:PDEP draft:false repo:{github_repo_url}", headers=GITHUB_API_HEADERS, timeout=5, )