Skip to content

Commit 4768dfe

Browse files
committed
Set container value to be string
1 parent 26de293 commit 4768dfe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/openhound_github/models/workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ class WorkflowJobDefinition(BaseModel):
8787
environment: Any = None
8888
permissions: Any = None
8989
uses: str | None = None
90-
container: str = None
90+
container: Any = None
9191
env: dict[str, Any] = Field(default_factory=dict)
9292
secrets: dict[str, Any] | str | None = None
9393
steps: list[WorkflowStepDefinition] = Field(default_factory=list)

0 commit comments

Comments
 (0)