File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -20,20 +20,20 @@ jobs:
20
20
- name : flake8 Lint
21
21
uses : py-actions/flake8@v2
22
22
if : |
23
- github.event. inputs.gpu-series == 'Standard_NC4as_T4_v3'
23
+ inputs.gpu-series == 'Standard_NC4as_T4_v3'
24
24
|| (
25
- github.event. schedule
25
+ github.event_name == ' schedule'
26
26
&& github.repository_owner == 'ggerganov'
27
27
)
28
- || github.event. pull_request
28
+ || github.event_name == ' pull_request'
29
29
|| github.head_ref == 'master'
30
30
|| (
31
- github.event. push
32
- && github.event.push. ref == 'refs/heads/master'
31
+ github.event_name == ' push'
32
+ && github.event.ref == 'refs/heads/master'
33
33
&& github.repository_owner == 'ggerganov'
34
34
)
35
35
|| (
36
- ! github.event. push
36
+ github.event_name != ' push'
37
37
&& github.ref_name == 'master'
38
38
)
39
39
with :
You can’t perform that action at this time.
0 commit comments