Skip to content

Commit

Permalink
Fix missing PR_BASE_SHA
Browse files Browse the repository at this point in the history
Looks like this was missing from b700155.

Caused failed jobs like..

  https://github.com/dholroyd/h264-reader/actions/runs/12967209055/job/36168818413

..with..

  invalid value '' for '--start-point-hash <START_POINT_HASH>'
  • Loading branch information
dholroyd committed Jan 27, 2025
1 parent 259d8b7 commit 58f4546
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/pr-benchmark-upload-from-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jobs:
let prEvent = JSON.parse(fs.readFileSync(process.env.PR_EVENT, {encoding: 'utf8'}));
core.exportVariable("PR_HEAD", prEvent.pull_request.head.ref);
core.exportVariable("PR_BASE", prEvent.pull_request.base.ref);
core.exportVariable("PR_BASE_SHA", prEvent.pull_request.base.sha);
core.exportVariable("PR_DEFAULT", prEvent.pull_request.base.repo.default_branch);
core.exportVariable("PR_NUMBER", prEvent.number);
- uses: bencherdev/bencher@main
Expand Down

0 comments on commit 58f4546

Please sign in to comment.