We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 551104d commit 8d25e75Copy full SHA for 8d25e75
.github/workflows/benchmark.yml
@@ -29,10 +29,9 @@ jobs:
29
github.event_name == 'push'
30
}}
31
env:
32
- # For PRs, compare against the base branch
+ # For PRs, compare against the base branch - e.g., 'main'.
33
# For pushes to main, compare against the previous commit
34
- #BRANCH_NAME: ${{ github.event_name == 'pull_request' && github.base_ref || github.event.before }}
35
- BRANCH_NAME: ${{ github.event.before }}
+ BRANCH_NAME: ${{ github.event_name == 'pull_request' && github.base_ref || github.event.before }}
36
steps:
37
- uses: actions/checkout@v4
38
with:
0 commit comments