From 24ef82d7ee7c29c09700b1188baa35f7ab77e645 Mon Sep 17 00:00:00 2001 From: Piotr Halama Date: Tue, 10 Sep 2024 12:52:21 +0200 Subject: [PATCH] Disable e2e test on PR (#24) --- .github/workflows/push-e2e-test.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/push-e2e-test.yml b/.github/workflows/push-e2e-test.yml index 3c218cf..66cbb89 100644 --- a/.github/workflows/push-e2e-test.yml +++ b/.github/workflows/push-e2e-test.yml @@ -1,16 +1,14 @@ name: pull-e2e-test on: push: - branches: [ "main", "release-*" ] - pull_request_target: - types: [opened, edited, synchronize, reopened] + branches: ["main", "release-*"] jobs: btp-integration-tests: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: compute github commit sha + - name: compute github commit sha id: vars run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT - name: Create kyma runtime on btp @@ -30,6 +28,3 @@ jobs: TF_VAR_BTP_CUSTOM_IAS_TENANT: ${{ secrets.ias_tenant }} TF_VAR_BTP_CUSTOM_IAS_DOMAIN: ${{ secrets.ias_domain }} TF_VAR_BTP_BACKEND_URL: ${{ secrets.btp_api_url }} - - -