Skip to content

Commit

Permalink
chore: Remove check for labeled action (calcom#15547)
Browse files Browse the repository at this point in the history
  • Loading branch information
keithwillcode authored Jun 24, 2024
1 parent 47a8ba1 commit 928dd49
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,28 +88,28 @@ jobs:
type-check:
name: Type check
needs: [changes, check-label]
if: ${{ github.event.action != 'labeled' && needs.changes.outputs.has-files-requiring-all-checks == 'true' }}
if: ${{ needs.changes.outputs.has-files-requiring-all-checks == 'true' }}
uses: ./.github/workflows/check-types.yml
secrets: inherit

lint:
name: Linters
needs: [changes, check-label]
if: ${{ github.event.action != 'labeled' && needs.changes.outputs.has-files-requiring-all-checks == 'true' }}
if: ${{ needs.changes.outputs.has-files-requiring-all-checks == 'true' }}
uses: ./.github/workflows/lint.yml
secrets: inherit

unit-test:
name: Tests
needs: [changes, check-label]
if: ${{ github.event.action != 'labeled' && needs.changes.outputs.has-files-requiring-all-checks == 'true' }}
if: ${{ needs.changes.outputs.has-files-requiring-all-checks == 'true' }}
uses: ./.github/workflows/unit-tests.yml
secrets: inherit

integration-test:
name: Tests
needs: [changes, check-label]
if: ${{ github.event.action != 'labeled' && needs.changes.outputs.has-files-requiring-all-checks == 'true' }}
if: ${{ needs.changes.outputs.has-files-requiring-all-checks == 'true' }}
uses: ./.github/workflows/integration-tests.yml
secrets: inherit

Expand Down

0 comments on commit 928dd49

Please sign in to comment.