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 e309203 commit 5c68110Copy full SHA for 5c68110
.github/workflows/test.yml
@@ -89,8 +89,15 @@ jobs:
89
90
self:
91
name: Self Hosted
92
- if: github.repository == 'MFlowCode/MFC' && needs.file-changes.outputs.checkall == 'true'
93
needs: file-changes
+ # one consolidated condition
94
+ if: |
95
+ github.repository == 'MFlowCode/MFC' &&
96
+ needs.file-changes.outputs.checkall == 'true' &&
97
+ (
98
+ github.event_name == 'workflow_dispatch' ||
99
+ !(matrix.lbl == 'frontier' && matrix.device == 'cpu')
100
+ )
101
continue-on-error: false
102
timeout-minutes: 1400
103
strategy:
0 commit comments