Skip to content

Commit

Permalink
check owner on push also
Browse files Browse the repository at this point in the history
  • Loading branch information
CISC authored May 4, 2024
1 parent d686299 commit b259634
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
ftype: q4_0
pr_comment_enabled: "true"

if: ${{ github.event.inputs.gpu-series == 'Standard_NC4as_T4_v3' || (github.repository_owner == 'ggerganov' && github.event.schedule) || github.event.pull_request || github.head_ref == 'master' || github.ref_name == 'master' || github.event.push.ref == 'refs/heads/master' }}
if: ${{ github.event.inputs.gpu-series == 'Standard_NC4as_T4_v3' || (github.repository_owner == 'ggerganov' && github.event.schedule) || github.event.pull_request || github.head_ref == 'master' || (github.event.push && (github.repository_owner == 'ggerganov' && github.event.push.ref == 'refs/heads/master') || github.ref_name == 'master') }}
steps:
- name: Clone
id: checkout
Expand Down

0 comments on commit b259634

Please sign in to comment.