Merge pull request #12666 from rabbitmq/rabbitmq-server-12665 #18
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 an alpha release build | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - "main" | |
| paths: | |
| - "deps/**" | |
| - ".github/workflows/**" | |
| jobs: | |
| trigger_alpha_build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Compute prerelease identifier from commit SHA | |
| run: echo "PRERELEASE_IDENTIFIER=`echo ${{ github.sha }} | cut -c1-8`" >> $GITHUB_ENV | |
| - name: Trigger an alpha build in rabbitmq/server-packages | |
| run: | | |
| curl -L \ | |
| -X POST \ | |
| -H "Accept: application/vnd.github+json" \ | |
| -H "Authorization: Bearer ${{ secrets.RABBITMQCI_BOT_TOKEN }}" \ | |
| -H "X-GitHub-Api-Version: 2022-11-28" \ | |
| https://api.github.com/repos/rabbitmq/server-packages/dispatches \ | |
| -d '{"event_type": "new_4.1.x_alpha", "client_payload": {"prerelease": true, "prerelease_kind": "alpha", "prerelease_identifier": "${{ env.PRERELEASE_IDENTIFIER }}", "base_version": "4.1.0"}}' |