Trigger tests manually with “/“ instead of “@“

Signed-off-by: Guillaume Tardif <guillaume.tardif@docker.com>
This commit is contained in:
Guillaume Tardif 2020-08-20 12:15:18 +02:00
parent 2df4112913
commit 666b859f71
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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