Upgrade repository-dispatch action to v3 for Node.js 24 compatibility… #45
This file contains hidden or 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 Vercel deploy (prod) | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: {} | |
| jobs: | |
| trigger-vercel-deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trigger Vercel deploy | |
| run: | | |
| curl -X POST ${{ secrets.VERCEL_DEPLOY_LINK_PROD }} | |
| update-search-records: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trigger search records update in flowpipe.io | |
| uses: peter-evans/repository-dispatch@v3 | |
| with: | |
| token: ${{ secrets.G_PERSONAL_ACCESS_TOKEN }} | |
| repository: turbot/flowpipe.io | |
| event-type: update-search-records |