We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e8ca26 commit c3d9d70Copy full SHA for c3d9d70
.github/workflows/bench.yml
@@ -53,20 +53,20 @@ jobs:
53
pr_comment_enabled: "true"
54
55
if: |
56
- github.event.inputs.gpu-series == 'Standard_NC4as_T4_v3'
+ inputs.gpu-series == 'Standard_NC4as_T4_v3'
57
|| (
58
- github.event.schedule
+ github.event_name == 'schedule'
59
&& github.repository_owner == 'ggerganov'
60
)
61
- || github.event.pull_request
+ || github.event_name == 'pull_request'
62
|| github.head_ref == 'master'
63
64
- github.event.push
65
- && github.event.push.ref == 'refs/heads/master'
+ github.event_name == 'push'
+ && github.event.ref == 'refs/heads/master'
66
67
68
69
- !github.event.push
+ github.event_name != 'push'
70
&& github.ref_name == 'master'
71
72
steps:
0 commit comments