We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4404a08 commit c351c2bCopy full SHA for c351c2b
.github/workflows/bench.yml
@@ -17,7 +17,6 @@ on:
17
jobs:
18
pre_job:
19
runs-on: ubuntu-latest
20
- if: contains(github.event.pull_request.labels.*.name, 'performance')
21
outputs:
22
should_skip: ${{ steps.skip_check.outputs.should_skip }}
23
steps:
@@ -40,7 +39,7 @@ jobs:
40
39
]'
41
42
bench_init:
43
- if: needs.pre_job.outputs.should_skip != 'true'
+ if: needs.pre_job.outputs.should_skip != 'true' && contains(github.event.pull_request.labels.*.name, 'performance')
44
needs: pre_job
45
runs-on: ${{ matrix.os }}
46
0 commit comments