Trigger prisma-engines-builds run for 811068771a7c08ca615bdbdfea96f56a3d10a25b #151
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: Trigger prisma-engines-builds run | |
run-name: Trigger prisma-engines-builds run for ${{ github.sha }} | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
send-commit-hash: | |
runs-on: ubuntu-22.04 | |
steps: | |
- run: echo "Sending event for commit $GITHUB_SHA" | |
- name: Workflow dispatch to prisma/prisma-engines-builds | |
uses: benc-uk/workflow-dispatch@v1 | |
with: | |
workflow: .github/workflows/build-engines.yml | |
repo: prisma/prisma-engines-builds | |
token: ${{ secrets.BOT_TOKEN_PRISMA_ENGINES_BUILD }} | |
inputs: '{ "commit": "${{ github.sha }}" }' |