Skip to content

Commit

Permalink
🚇🩹 Fix wrong comparison in pr_benchmark workflow (#1097)
Browse files Browse the repository at this point in the history
* 🚇🩹 Fixed release and main comparison using HEAD instead of main

* 🚧📚 Added change to changelog
  • Loading branch information
s-weigand authored Jun 11, 2022
1 parent 73ebe46 commit 60115bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pr_benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
pr_nr = os.environ.get("PR_NR")
diff_release_main = subprocess.run(
["asv", "--config=benchmark/asv.conf.json", "compare", "${{steps.benchmark_run.outputs.last_tag}}", "HEAD"],
["asv", "--config=benchmark/asv.conf.json", "compare", "${{steps.benchmark_run.outputs.last_tag}}", "upstream/main"],
capture_output=True,
)
diff_main_PR = subprocess.run(
Expand Down
2 changes: 2 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@

### 🚧 Maintenance

🚇🩹 Fix wrong comparison in pr_benchmark workflow (#1097)

(changes-0_6_0)=

## 🚀 0.6.0 (2022-06-06)
Expand Down

0 comments on commit 60115bd

Please sign in to comment.