From 58e1539d07813354641a44e193fc30439a021f01 Mon Sep 17 00:00:00 2001 From: BennyFranciscus <268274351+BennyFranciscus@users.noreply.github.com> Date: Sun, 29 Mar 2026 17:08:46 +0000 Subject: [PATCH 1/2] test/u --- frameworks/uwebsockets/server.js | 1 + 1 file changed, 1 insertion(+) diff --git a/frameworks/uwebsockets/server.js b/frameworks/uwebsockets/server.js index 6efcc678..d6ec1ada 100644 --- a/frameworks/uwebsockets/server.js +++ b/frameworks/uwebsockets/server.js @@ -63,6 +63,7 @@ function startServer() { }); }); + // c1 // Catch-all GET — /baseline11 etc: sum query params app.get('/*', (res, req) => { const qs = req.getQuery(); From 22894dfbfa5e3aa7485f978c9de0b1d7ef01b8a0 Mon Sep 17 00:00:00 2001 From: BennyFranciscus <268274351+BennyFranciscus@users.noreply.github.com> Date: Sun, 29 Mar 2026 17:14:26 +0000 Subject: [PATCH 2/2] fix attempt on --save --- .github/workflows/benchmark-pr.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/benchmark-pr.yml b/.github/workflows/benchmark-pr.yml index 0b22ca20..ae5d6d8a 100644 --- a/.github/workflows/benchmark-pr.yml +++ b/.github/workflows/benchmark-pr.yml @@ -49,6 +49,11 @@ jobs: - name: Commit saved results if: inputs.save == 'true' run: | + # Get the PR's source branch and repo + PR_DATA=$(gh api "/repos/${{ github.repository }}/pulls/${{ inputs.pr }}" --jq '.head.ref + " " + .head.repo.full_name') + PR_BRANCH=$(echo "$PR_DATA" | awk '{print $1}') + PR_REPO=$(echo "$PR_DATA" | awk '{print $2}') + git config user.name "github-actions[bot]" git config user.email "github-actions[bot]@users.noreply.github.com" git add results/ site/data/ site/static/logs/ 2>/dev/null || true @@ -56,7 +61,8 @@ jobs: echo "No results to commit" else git commit -m "Benchmark results: ${{ inputs.framework }} ${{ inputs.profile }}" - git push origin HEAD:refs/pull/${{ inputs.pr }}/head + git remote set-url origin "https://x-access-token:${GH_TOKEN}@github.com/${PR_REPO}.git" + git push origin HEAD:"${PR_BRANCH}" fi env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}