Parcourir la source

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

Signed-off-by: Guillaume Tardif <[email protected]>
Guillaume Tardif il y a 5 ans
Parent
commit
666b859f71
2 fichiers modifiés avec 4 ajouts et 4 suppressions
  1. 1 1
      .github/PULL_REQUEST_TEMPLATE.md
  2. 3 3
      .github/workflows/optional-ci.yml

+ 1 - 1
.github/PULL_REQUEST_TEMPLATE.md

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

+ 3 - 3
.github/workflows/optional-ci.yml

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