File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -88,28 +88,28 @@ jobs:
88
88
type-check :
89
89
name : Type check
90
90
needs : [changes, check-label]
91
- if : ${{ github.event.action != 'labeled' && needs.changes.outputs.has-files-requiring-all-checks == 'true' }}
91
+ if : ${{ needs.changes.outputs.has-files-requiring-all-checks == 'true' }}
92
92
uses : ./.github/workflows/check-types.yml
93
93
secrets : inherit
94
94
95
95
lint :
96
96
name : Linters
97
97
needs : [changes, check-label]
98
- if : ${{ github.event.action != 'labeled' && needs.changes.outputs.has-files-requiring-all-checks == 'true' }}
98
+ if : ${{ needs.changes.outputs.has-files-requiring-all-checks == 'true' }}
99
99
uses : ./.github/workflows/lint.yml
100
100
secrets : inherit
101
101
102
102
unit-test :
103
103
name : Tests
104
104
needs : [changes, check-label]
105
- if : ${{ github.event.action != 'labeled' && needs.changes.outputs.has-files-requiring-all-checks == 'true' }}
105
+ if : ${{ needs.changes.outputs.has-files-requiring-all-checks == 'true' }}
106
106
uses : ./.github/workflows/unit-tests.yml
107
107
secrets : inherit
108
108
109
109
integration-test :
110
110
name : Tests
111
111
needs : [changes, check-label]
112
- if : ${{ github.event.action != 'labeled' && needs.changes.outputs.has-files-requiring-all-checks == 'true' }}
112
+ if : ${{ needs.changes.outputs.has-files-requiring-all-checks == 'true' }}
113
113
uses : ./.github/workflows/integration-tests.yml
114
114
secrets : inherit
115
115
You can’t perform that action at this time.
0 commit comments