diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml deleted file mode 100644 index 878ccc5b..00000000 --- a/.github/workflows/integration-tests.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: "Trigger Integration tests" -on: - pull_request_target: - types: [labeled, opened] - branches: - - master - - 'releases/*' -jobs: - trigger-integration-tests: - name: Trigger Integration tests - if: startsWith(github.event.pull_request.head.label, format('{0}:',github.repository_owner)) || contains(github.event.pull_request.labels.*.name, 'run-tests') - runs-on: ubuntu-latest - steps: - - name: Check out repository - uses: actions/checkout@v2 - with: - path: IntegrationTests - - - name: Trigger Test run - run: | - bash ./IntegrationTests/.github/workflows/TriggerIntegrationTests.sh ${{ secrets.L2_REPO_TOKEN }} ${{ github.event.pull_request.head.sha }} ${{ github.repository }} ${{ github.event.pull_request.number }} ${{ github.event.pull_request.head.ref }} ${{ github.event.pull_request.base.ref }} ${{ secrets.L2_REPO_USER }} ${{ github.event.pull_request.head.repo.full_name }}