keep pm2 logs on test fail #100
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: 'webhook pull dev' | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - develop | |
| paths-ignore: | |
| - "shared/**" | |
| jobs: | |
| webhook-dev: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: notify dev | |
| uses: distributhor/workflow-webhook@v3 | |
| with: | |
| curl_opts: "--retry 5 --retry-all-errors" | |
| webhook_type: "json-extended" | |
| webhook_url: "https://dev.cables.gl/api/webhooks/pulldev?secret=${{ secrets.WEBHOOK_SECRET }}" | |
| webhook_secret: ${{ secrets.WEBHOOK_SECRET }} |