From 12d71c4263690f3990d590fbff611b2a24ef2dbc Mon Sep 17 00:00:00 2001 From: Matthias Oertel Date: Thu, 7 Dec 2023 09:44:55 +0100 Subject: [PATCH] ci: Remove QE Tag action that is not used by PDP anymore (#4528) --- .github/workflows/send-tag-event.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/send-tag-event.yml diff --git a/.github/workflows/send-tag-event.yml b/.github/workflows/send-tag-event.yml deleted file mode 100644 index eb33406d9580..000000000000 --- a/.github/workflows/send-tag-event.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Send Tag Event to PDP - -on: - push: - tags: - - '**' - -jobs: - send-tag-event: - runs-on: ubuntu-22.04 - steps: - - run: echo "Sending event for tag ${{ github.ref_name }}" - - uses: actions/github-script@v6 - with: - github-token: ${{ secrets.ACCELERATE_DOCKER_QE_BUILD }} - script: | - await github.rest.repos.createDispatchEvent({ - owner: 'prisma', - repo: 'pdp-cloudflare', - event_type: "engines_release", - client_payload: { - prisma_version: '${{ github.ref_name }}', - }, - })