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
2 changes: 1 addition & 1 deletion latest_changes/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ def main() -> None:
)
number_of_trials = 10
logging.info(f"Number of trials (for race conditions): {number_of_trials}")
for trial in range(10):
for trial in range(number_of_trials):
logging.info(f"Running trial: {trial}")
logging.info(
"Pulling the latest changes, including the latest merged PR (this one)"
Expand Down
2 changes: 1 addition & 1 deletion latest_changes/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -3214,7 +3214,7 @@ class WorkflowRun(BaseModel):
head_branch: str = Field(..., example='master')
head_sha: str = Field(
...,
description='The SHA of the head commit that points to the version of the worflow being run.',
description='The SHA of the head commit that points to the version of the workflow being run.',
example='009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d',
)
run_number: int = Field(
Expand Down