Trigger prisma-engines-builds run for 0e7772602c75d5a44a6f4b65c81998e208a5e1e4 #100
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 }}" }' |