Skip to content

Commit 66b0895

Browse files
docs: clarify that we don't support git commit SHA in git agents/blueprint builds (#8638)
1 parent 8ac5cc5 commit 66b0895

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 109
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-5a483f0dac23061ed86208a55bb901b4157b4e40b9011f057cb11b519a42cc01.yml
3-
openapi_spec_hash: f4c6b6b82e5a543d3a9e1f326c311b51
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-f0eb12cf4df4fa3046bd88aae4966062eb6e9703768a07a0136da2f26a2ebd56.yml
3+
openapi_spec_hash: cdbd63a8162f1e987e937042cbd60eea
44
config_hash: ecb1ff09d29b565ed1452b5e0362e64d

src/runloop_api_client/types/shared/code_mount_parameters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class CodeMountParameters(BaseModel):
2121
"""The authentication token necessary to pull repo."""
2222

2323
git_ref: Optional[str] = None
24-
"""Optional git ref (branch, tag, or commit SHA) to checkout.
24+
"""Optional git ref (branch or tag) to checkout.
2525
2626
Defaults to the repository default branch.
2727
"""

src/runloop_api_client/types/shared/mount.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class CodeMount(BaseModel):
2828
"""The authentication token necessary to pull repo."""
2929

3030
git_ref: Optional[str] = None
31-
"""Optional git ref (branch, tag, or commit SHA) to checkout.
31+
"""Optional git ref (branch or tag) to checkout.
3232
3333
Defaults to the repository default branch.
3434
"""

src/runloop_api_client/types/shared_params/code_mount_parameters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class CodeMountParameters(TypedDict, total=False):
2222
"""The authentication token necessary to pull repo."""
2323

2424
git_ref: Optional[str]
25-
"""Optional git ref (branch, tag, or commit SHA) to checkout.
25+
"""Optional git ref (branch or tag) to checkout.
2626
2727
Defaults to the repository default branch.
2828
"""

src/runloop_api_client/types/shared_params/mount.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class CodeMount(TypedDict, total=False):
2828
"""The authentication token necessary to pull repo."""
2929

3030
git_ref: Optional[str]
31-
"""Optional git ref (branch, tag, or commit SHA) to checkout.
31+
"""Optional git ref (branch or tag) to checkout.
3232
3333
Defaults to the repository default branch.
3434
"""

0 commit comments

Comments
 (0)