Skip to content

Commit b9610e3

Browse files
committed
Benchmarks: Fix workflow.
[only benchmarks]
1 parent ba62282 commit b9610e3

File tree

1 file changed

+4
-16
lines changed

1 file changed

+4
-16
lines changed

.github/workflows/Benchmark.yml

+4-16
Original file line numberDiff line numberDiff line change
@@ -9,28 +9,16 @@ on:
99
pull_request_target:
1010
branches:
1111
- main
12-
paths:
13-
- "src/**/*"
14-
- "lib/**/*"
15-
- "ext/**/*"
16-
- "perf/**/*"
17-
- ".buildkite/**/*"
18-
- "Project.toml"
1912
push:
2013
branches:
2114
- main
22-
paths:
23-
- "src/**/*"
24-
- "lib/**/*"
25-
- "ext/**/*"
26-
- "perf/**/*"
27-
- ".buildkite/**/*"
28-
- "Project.toml"
2915

3016
jobs:
3117
benchmark:
3218
runs-on: ubuntu-latest
3319
steps:
20+
- uses: actions/checkout@v4
21+
3422
- name: Download Buildkite Artifacts
3523
id: download
3624
uses: EnricoMi/download-buildkite-artifact-action@v1
@@ -54,8 +42,8 @@ jobs:
5442
output-file-path: ${{ steps.locate.outputs.path }}
5543
benchmark-data-dir-path: "bench"
5644
github-token: ${{ secrets.GITHUB_TOKEN }}
57-
comment-always: ${{ github.event_name == 'pull_request' }}
45+
comment-always: ${{ github.event_name == 'pull_request_target' }}
5846
summary-always: true
5947
alert-threshold: "125%"
6048
fail-on-alert: false
61-
auto-push: ${{ github.event_name != 'pull_request' }}
49+
auto-push: ${{ github.event_name != 'pull_request_target' }}

0 commit comments

Comments
 (0)