Skip to content

Commit a965f4e

Browse files
author
Evert
committed
Fix on-pr workflow
1 parent 7fce8f3 commit a965f4e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/on_pr.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ concurrency:
1919
cancel-in-progress: true
2020

2121
jobs:
22+
2223
packaging_test:
2324
name: Build a minimal set of packages and run all tests on them
2425
# Skip packaging tests for draft PRs
@@ -27,13 +28,14 @@ jobs:
2728
with:
2829
minimal: true
2930
testsuite: all
30-
git_ref: ${{ github.ref }}
31-
duckdb_git_ref: ${{ github.ref_name }}
31+
git_ref: ${{ github.head_ref }}
32+
duckdb_git_ref: ${{ github.base_ref }}
3233

3334
coverage_test:
3435
name: Run coverage tests
3536
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
3637
uses: ./.github/workflows/coverage.yml
3738
with:
38-
git_ref: ${{ github.ref }}
39+
git_ref: ${{ github.head_ref }}
40+
duckdb_git_ref: ${{ github.base_ref }}
3941
testsuite: all

0 commit comments

Comments
 (0)