added fields to the metadata to make manual

filtering easier
This commit is contained in:
Karma Riuk
2025-05-20 09:51:50 +02:00
parent 3ffbb229b8
commit 15ffe67b0e
2 changed files with 23 additions and 4 deletions

View File

@ -45,7 +45,9 @@ class Metadata:
pr_title: str
pr_body: str
merge_commit_sha: str # to checkout for the tests
successful: bool = True
is_covered: Optional[bool] = None
is_code_related: Optional[bool] = None
successful: Optional[bool] = None
build_system: str = ""
reason_for_failure: str = ""
last_cmd_error_msg: str = ""