We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 969ce6e + 8d4457a commit 5db67bfCopy full SHA for 5db67bf
1 file changed
src/logdetective_packit/models.py
@@ -15,7 +15,9 @@ class BuildInfo(BaseModel):
15
description="Unique identifier of the build so the result can be reported"
16
)
17
build_system: str = Field(description="System where the build was launched")
18
- project_url: str = Field(description="URL of the project being analyzed")
+ project_url: Optional[str] = Field(
19
+ description="URL of the project being analyzed", default=None
20
+ )
21
commit_sha: Optional[str] = Field(
22
description="SHA of the commit used as basis of the build", default=None
23
0 commit comments