Skip to content

workflow_input

GithubWorkflowInput

Bases: BaseModel

Declare extra workflow inputs.

Attributes:

Name Type Description
type str

...

description str

...

required bool

...

Source code in m/ci/docker/workflow_input.py
4
5
6
7
8
9
class GithubWorkflowInput(BaseModel):
    """Declare extra workflow inputs."""

    type: str = 'string'
    description: str
    required: bool = True