Skip to content

Commit

Permalink
fixup branch sorting for automatic pr (#4102) (#4103)
Browse files Browse the repository at this point in the history
  • Loading branch information
andriisoldatenko authored Nov 26, 2024
1 parent 2a00caf commit fd21661
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hack/build/ci/update-e2e-ondemand-pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
version = ""
# read versions to list
with open(version_file, "r") as f:
version = f.readline().strip().replace("origin/", "")
version = [v.strip().replace("origin/", "") for v in f.readlines()][-1]

yaml = YAML()
yaml.width = 4096
Expand Down

0 comments on commit fd21661

Please sign in to comment.