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 f006b5c commit c4ae6c1Copy full SHA for c4ae6c1
.github/workflows/bench.yml
@@ -54,13 +54,19 @@ jobs:
54
55
if: |
56
github.event.inputs.gpu-series == 'Standard_NC4as_T4_v3'
57
- || (github.event.schedule && github.repository_owner == 'ggerganov')
+ || (
58
+ github.event.schedule
59
+ && github.repository_owner == 'ggerganov')
60
|| github.event.pull_request
61
|| github.head_ref == 'master'
62
|| (
63
github.event.push
- && (github.event.push.ref == 'refs/heads/master' && github.repository_owner == 'ggerganov')
- || github.ref_name == 'master'
64
+ && github.event.push.ref == 'refs/heads/master'
65
+ && github.repository_owner == 'ggerganov'
66
+ )
67
68
+ !github.event.push
69
+ && github.ref_name == 'master'
70
)
71
steps:
72
- name: Clone
0 commit comments