mirror of https://github.com/docker/compose.git
Trigger tests manually with “/“ instead of “@“
Signed-off-by: Guillaume Tardif <guillaume.tardif@docker.com>
This commit is contained in:
parent
2df4112913
commit
666b859f71
|
@ -4,7 +4,7 @@
|
|||
<!-- If this is a bug fix, make sure your description includes "fixes #xxxx", or "closes #xxxx" -->
|
||||
|
||||
<!-- optional tests
|
||||
You can add a @ mention to run tests executed by default only on main branch :
|
||||
You can add a / mention to run tests executed by default only on main branch :
|
||||
* `test-aci` to run ACI E2E tests
|
||||
* `test-ecs` to run ECS E2E tests
|
||||
* `test-windows` to run tests & E2E tests on windows
|
||||
|
|
|
@ -20,19 +20,19 @@ jobs:
|
|||
if: github.event_name == 'pull_request'
|
||||
id: runacitest
|
||||
with:
|
||||
trigger: '@test-aci'
|
||||
trigger: '/test-aci'
|
||||
- uses: khan/pull-request-comment-trigger@master
|
||||
name: Check if test Windows
|
||||
if: github.event_name == 'pull_request'
|
||||
id: runwindowstest
|
||||
with:
|
||||
trigger: '@test-windows'
|
||||
trigger: '/test-windows'
|
||||
- uses: khan/pull-request-comment-trigger@master
|
||||
name: Check if test ECS
|
||||
if: github.event_name == 'pull_request'
|
||||
id: runecstest
|
||||
with:
|
||||
trigger: '@test-ecs'
|
||||
trigger: '/test-ecs'
|
||||
|
||||
aci-tests:
|
||||
name: ACI e2e tests
|
||||
|
|
Loading…
Reference in New Issue