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