Trigger prisma-engines-builds run for d6ac9330126e8c4807f51c3b7832d834af1d7adf #113
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 }}" }' |