Skip to content

Commit 449d484

Browse files
committed
api.models: Add patchset field to node revision
This patch was initially submitted as kernelci/kernelci-api#380 but required moving after merging kernelci/kernelci-api#433. Signed-off-by: Nikolay Yurin <[email protected]>
1 parent 3a201f0 commit 449d484

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

kernelci/api/models.py

+3
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,9 @@ class Revision(BaseModel):
8787
version: Optional[KernelVersion] = Field(
8888
description="Kernel version"
8989
)
90+
patchset: Optional[str] = Field(
91+
description="Patchset hash"
92+
)
9093

9194

9295
class DefaultTimeout:

0 commit comments

Comments
 (0)