File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -26,9 +26,8 @@ permissions:
2626jobs :
2727 # Runs on every push to main to build the statistical baseline.
2828 benchmark_main :
29- if : ${{ false }} # skip job
3029 name : Benchmark — ${{ matrix.bench.name }} (main baseline)
31- if : github.event_name == 'push' || github.event_name == 'workflow_dispatch'
30+ if : ${{ false && ( github.event_name == 'push' || github.event_name == 'workflow_dispatch') }} # skip job
3231 runs-on : ubuntu-latest
3332 timeout-minutes : 30
3433 strategy :
7776 # Runs on same-repo PRs. Fork PRs are skipped — they have no access to
7877 # BENCHER_API_TOKEN, so the job would fail rather than silently skip.
7978 benchmark_pr :
80- if : ${{ false }} # skip job
8179 name : Benchmark — ${{ matrix.bench.name }} (PR regression check)
82- if : github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository
80+ if : ${{ false && ( github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) }} # skip job
8381 runs-on : ubuntu-latest
8482 timeout-minutes : 30
8583 strategy :
You can’t perform that action at this time.
0 commit comments