driver-adapters: remove dispose method for JS transaction interface (β¦ #1127
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }}', | |
}, | |
}) |