Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: Alexandros Sapranidis <alexandros@elastic.co>
  • Loading branch information
alexsapran committed Mar 19, 2024
1 parent a74a5b6 commit 921ac8a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .buildkite/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ def fetch_pr_comment_group_pipeline(comment: PRComment) -> list[Group]:

if not project_obj["stages"][comment.group]:
raise ValueError(
"Group not found in {} buildkike.yml: {}".format(
"Group not found in {} buildkite.yml: {}".format(
comment.project, comment.group
)
)
Expand Down Expand Up @@ -344,7 +344,7 @@ def fetch_pr_comment_step_pipeline(comment: PRComment) -> list[Group]:

if not project_obj["stages"][comment.group]:
raise ValueError(
"Group not found in {} buildkike.yml: {}".format(
"Group not found in {} buildkite.yml: {}".format(
comment.project, comment.group
)
)
Expand All @@ -361,7 +361,7 @@ def fetch_pr_comment_step_pipeline(comment: PRComment) -> list[Group]:

if not filtered_steps:
raise ValueError(
"Step {} not found in {} buildkike.yml".format(
"Step {} not found in {} buildkite.yml".format(
comment.step, comment.project
)
)
Expand Down

0 comments on commit 921ac8a

Please sign in to comment.