diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml new file mode 100644 index 0000000000..9af9f772be --- /dev/null +++ b/.github/workflows/integration-tests.yml @@ -0,0 +1,17 @@ +name: Integration Tests + +on: + - pull_request + - push + +jobs: + dispatch: + runs-on: ubuntu-latest + steps: + - name: Repository Dispatch + uses: peter-evans/repository-dispatch@v1 + with: + token: "${{ secrets.GITHUB_TOKEN}}" + repository: ulisesgascon/express-examples + event-type: integration-tests + client-payload: '{"branch": "${{ github.head_ref || github.ref }}"}' \ No newline at end of file