diff --git a/src/github.py b/src/github.py index 157a141..6e68050 100644 --- a/src/github.py +++ b/src/github.py @@ -300,6 +300,7 @@ async def get_software_projects(self) -> list[SoftwareProject]: or "untitled" in project_node["title"] or not project_node["shortDescription"] or len(project_node["shortDescription"]) < 20 + or "on hold" in project_node["shortDescription"] ): continue project = SoftwareProject(project_node) diff --git a/src/github_types.py b/src/github_types.py index 3ab8e42..c508a51 100644 --- a/src/github_types.py +++ b/src/github_types.py @@ -375,6 +375,7 @@ class SoftwareProjectStatus(Enum): TODO = "Todo" IN_PROGRESS = "In Progress" DONE = "Done" + WISHLIST = "Wishlist" @dataclasses.dataclass()