File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed
Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 3232 - name : Checkout
3333 uses : actions/checkout@v4
3434
35+ - name : Post In-Progress Comment (Linux)
36+ if : startsWith(matrix.os, 'ubuntu') && github.event_name == 'pull_request'
37+ uses : marocchino/sticky-pull-request-comment@v2
38+ with :
39+ header : perf-linux
40+ message : |
41+ ## Performance Report (Linux) :hourglass_flowing_sand:
42+
43+ Running performance tests... Results will appear here when complete.
44+
45+ - name : Post In-Progress Comment (Windows)
46+ if : startsWith(matrix.os, 'windows') && github.event_name == 'pull_request'
47+ uses : marocchino/sticky-pull-request-comment@v2
48+ with :
49+ header : perf-windows
50+ message : |
51+ ## Performance Report (Windows) :hourglass_flowing_sand:
52+
53+ Running performance tests... Results will appear here when complete.
54+
55+ - name : Post In-Progress Comment (macOS)
56+ if : startsWith(matrix.os, 'macos') && github.event_name == 'pull_request'
57+ uses : marocchino/sticky-pull-request-comment@v2
58+ with :
59+ header : perf-macos
60+ message : |
61+ ## Performance Report (macOS) :hourglass_flowing_sand:
62+
63+ Running performance tests... Results will appear here when complete.
64+
3565 - name : Set Python to PATH
3666 uses : actions/setup-python@v5
3767 with :
You can’t perform that action at this time.
0 commit comments