-
Notifications
You must be signed in to change notification settings - Fork 16
42 lines (37 loc) · 1.13 KB
/
review-approved.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: FT pre-merge
on:
pull_request_review:
types: [submitted]
jobs:
functional-tests-local:
name: Deploy Local Services
if: github.event.review.state == 'approved'
uses: ./.github/workflows/functional-tests.yml
with:
api_version: dev
cli_version: dev
functional-tests-local-redis:
name: Deploy Local Services with Redis as Broker
if: github.event.review.state == 'approved'
uses: ./.github/workflows/functional-tests.yml
with:
docker_compose: docker-compose-redis.yml
api_version: dev
cli_version: dev
functional-tests-aws:
name: Deploy AWS Services
if: github.event.review.state == 'approved'
uses: ./.github/workflows/functional-tests.yml
with:
docker_compose: docker-compose-aws.yml
api_version: dev
cli_version: dev
# disabled until MySQL is supported
# functional-tests-mysql:
# name: Deploy MySQL Server as DB
# if: github.event.review.state == 'approved'
# uses: ./.github/workflows/functional-tests.yml
# with:
# docker_compose: docker-compose-mysql.yml
# api_version: dev
# cli_version: dev