Skip to content

Commit

Permalink
Revert "chore(root): Allow dev deployment tasks to run without tests"
Browse files Browse the repository at this point in the history
This reverts commit 67cd66c.
  • Loading branch information
SokratisVidros committed Nov 14, 2024
1 parent 67cd66c commit f2200a0
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 30 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/dev-deploy-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@ name: Deploy DEV API
# events but only for the master branch
on:
workflow_dispatch:
inputs:
skipTests:
type: boolean
description: Skip tests
default: false
push:
branches:
- next
Expand All @@ -26,7 +21,6 @@ env:

jobs:
test_api:
if: inputs.skipTests == 'false'
uses: ./.github/workflows/reusable-api-e2e.yml
with:
ee: true
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/dev-deploy-web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@ name: Deploy DEV WEB
# events but only for the master branch
on:
workflow_dispatch:
inputs:
skipTests:
type: boolean
description: Skip tests
default: false
push:
branches:
- next
Expand All @@ -23,7 +18,6 @@ env:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
test_web:
if: inputs.skipTests == 'false'
uses: ./.github/workflows/reusable-web-e2e.yml
with:
ee: true
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/dev-deploy-webhook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@ name: Deploy DEV WEBHOOK
# events but only for the master branch
on:
workflow_dispatch:
inputs:
skipTests:
type: boolean
description: Skip tests
default: false
push:
branches:
- next
Expand All @@ -26,7 +21,6 @@ env:

jobs:
test_webhook:
if: inputs.skipTests == 'false'
uses: ./.github/workflows/reusable-webhook-e2e.yml
secrets: inherit

Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/dev-deploy-worker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@ name: Deploy DEV Worker
# events but only for the master branch
on:
workflow_dispatch:
inputs:
skipTests:
type: boolean
description: Skip tests
default: false
push:
branches:
- next
Expand All @@ -30,7 +25,6 @@ env:

jobs:
test_worker:
if: inputs.skipTests == 'false'
uses: ./.github/workflows/reusable-worker-e2e.yml
with:
ee: true
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/dev-deploy-ws.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@ name: Deploy DEV WS
# events but only for the master branch
on:
workflow_dispatch:
inputs:
skipTests:
type: boolean
description: Skip tests
default: false
push:
branches:
- next
Expand All @@ -21,7 +16,6 @@ env:

jobs:
test_ws:
if: inputs.skipTests == 'false'
uses: ./.github/workflows/reusable-ws-e2e.yml
with:
ee: true
Expand Down

0 comments on commit f2200a0

Please sign in to comment.