Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion src/usethis/_integrations/ci/bitbucket/schema.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema.json
# timestamp: 2025-05-08T09:34:57+00:00
# timestamp: 2025-06-24T21:03:56+00:00
# using the command:
# datamodel-codegen --input tests\usethis\_integrations\ci\bitbucket\schema.json --input-file-type jsonschema --output src\usethis\_integrations\ci\bitbucket\schema.py --enum-field-as-literal all --field-constraints --use-double-quotes --use-union-operator --use-standard-collections --use-default-kwarg --output-model-type pydantic_v2.BaseModel --target-python-version 3.10
# ruff: noqa: ERA001
Expand Down Expand Up @@ -380,11 +380,23 @@ class StepBase(BaseModel):
title="Step Caches",
)
clone: Clone | None = None
concurrency_group: str | None = Field(
default=None,
alias="concurrency-group",
description="The concurrency group for the step.",
max_length=50,
title="Concurrency group",
)
deployment: str | None = Field(
default=None,
description="The deployment environment for the step.",
title="Step Deployment Environment",
)
environment: str | None = Field(
default=None,
description="The environment for the step.",
title="Step Environment",
)
fail_fast: FailFast | None = Field(
default=None,
alias="fail-fast",
Expand Down Expand Up @@ -445,6 +457,11 @@ class Stage(BaseModel):
description="The deployment environment for the stage.",
title="Stage Deployment Environment",
)
environment: str | None = Field(
default=None,
description="The environment for the stage.",
title="Stage Environment",
)
name: str | None = Field(
default=None, description="The name of the stage.", title="Stage Name"
)
Expand Down
Loading