File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -18,11 +18,15 @@ jobs:
18
18
path : ./cache
19
19
key : ${{ runner.os }}-benchmark
20
20
- name : Save Benchmark Results
21
- uses : rhysd /github-action-benchmark@v1
21
+ uses : benchmark-action /github-action-benchmark@v1
22
22
with :
23
23
tool : ' go'
24
24
output-file-path : output.txt
25
25
github-token : ${{ secrets.BENCHMARK_TOKEN }}
26
+ benchmark-data-dir-path : ' benchmarks'
26
27
fail-on-alert : true
27
- comment-on-alert : true
28
- auto-push : true
28
+ comment-on-alert : ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}
29
+ # Enable Job Summary for PRs - deactivated because of issues
30
+ # summary-always: ${{ github.event_name != 'push' && github.event_name != 'workflow_dispatch' }}
31
+ auto-push : ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}
32
+ save-data-file : ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}
You can’t perform that action at this time.
0 commit comments