Skip to content

Commit 928dd49

Browse files
chore: Remove check for labeled action (#15547)
1 parent 47a8ba1 commit 928dd49

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/pr.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -88,28 +88,28 @@ jobs:
8888
type-check:
8989
name: Type check
9090
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' }}
9292
uses: ./.github/workflows/check-types.yml
9393
secrets: inherit
9494

9595
lint:
9696
name: Linters
9797
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' }}
9999
uses: ./.github/workflows/lint.yml
100100
secrets: inherit
101101

102102
unit-test:
103103
name: Tests
104104
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' }}
106106
uses: ./.github/workflows/unit-tests.yml
107107
secrets: inherit
108108

109109
integration-test:
110110
name: Tests
111111
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' }}
113113
uses: ./.github/workflows/integration-tests.yml
114114
secrets: inherit
115115

0 commit comments

Comments
 (0)