We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7af8cd6 commit 4ecf667Copy full SHA for 4ecf667
bench_runner/scripts/run_benchmarks.py
@@ -250,7 +250,8 @@ def update_metadata(
250
metadata["benchmark_hash"] = util.get_benchmark_hash()
251
if run_id is not None:
252
metadata["github_action_url"] = f"{GITHUB_URL}/actions/runs/{run_id}"
253
- if actor := os.environ.get("GITHUB_ACTOR") is not None:
+ actor = os.environ.get("GITHUB_ACTOR")
254
+ if actor is not None:
255
metadata["github_actor"] = actor
256
257
with open(filename, "w") as fd:
bench_runner/templates/_generate.src.yml
@@ -28,6 +28,8 @@ jobs:
28
steps:
29
- name: Checkout benchmarking
30
uses: actions/checkout@v4
31
+ with:
32
+ ref: main
33
- name: Checkout CPython
34
35
with:
0 commit comments