Skip to content

Commit f18eebc

Browse files
committed
Merge branch '4.1'
2 parents d0aafe3 + 8293605 commit f18eebc

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/browser-tests.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: Browser tests
22
on:
3-
workflow_dispatch: ~
3+
workflow_dispatch:
4+
inputs:
5+
send-success-notification:
6+
description: 'Send a notification when the tests pass'
7+
required: false
8+
type: boolean
9+
default: true
410
push:
511
branches:
612
- master
@@ -18,6 +24,7 @@ jobs:
1824
test-setup-phase-1: "--profile=regression --suite=setup-content --tags=~@part2 --mode=standard"
1925
test-setup-phase-2: "--profile=regression --suite=setup-content --tags=@part2 --mode=standard"
2026
setup: "doc/docker/base-dev.yml:doc/docker/db-postgresql.yml:doc/docker/varnish.yml:doc/docker/redis.yml:doc/docker/selenium.yml"
27+
send-success-notification: ${{ github.event.inputs.send-success-notification != 'false' }}
2128
multirepository: true
2229
timeout: 90
2330
php-image: "ezsystems/php:7.4-v2-node14"
@@ -36,6 +43,7 @@ jobs:
3643
test-setup-phase-1: "--profile=regression --suite=setup-content --tags=~@part2 --mode=standard"
3744
test-setup-phase-2: "--profile=regression --suite=setup-content --tags=@part2 --mode=standard"
3845
setup: "doc/docker/base-dev.yml:doc/docker/selenium.yml"
46+
send-success-notification: ${{ github.event.inputs.send-success-notification != 'false' }}
3947
use-compatibility-layer: true
4048
timeout: 90
4149
php-image: "ezsystems/php:8.1-v2-node16"

0 commit comments

Comments
 (0)