Skip to content

Commit

Permalink
Do not show on hold projects, add Wishlist as valid status
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrxyz committed Jun 26, 2024
1 parent 80407cc commit 9452933
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions src/github_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,7 @@ class SoftwareProjectStatus(Enum):
TODO = "Todo"
IN_PROGRESS = "In Progress"
DONE = "Done"
WISHLIST = "Wishlist"


@dataclasses.dataclass()
Expand Down

0 comments on commit 9452933

Please sign in to comment.