Dependency thoas updated from 1.0.0 to 1.2.1 #49
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 a 4.1.x alpha release build" | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
# 4.1.x | |
- "main" | |
paths: | |
- "deps/*/src/**" | |
- 'deps/rabbitmq_management/priv/**' | |
- ".github/workflows/**" | |
- "rabbitmq-components.mk" | |
env: | |
DEV_WORKFLOW_REPOSITORY: "rabbitmq/server-packages" | |
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 a 4.0.x alpha build in ${{ env.DEV_WORKFLOW_REPOSITORY }} | |
uses: peter-evans/repository-dispatch@v3 | |
with: | |
token: ${{ secrets.RABBITMQCI_BOT_TOKEN }} | |
repository: ${{ env.DEV_WORKFLOW_REPOSITORY }} | |
event-type: "new_4.1.x_alpha" | |
client-payload: |- | |
{ | |
"release_repository": "${{ env.DEV_WORKFLOW_REPOSITORY }}", | |
"release_description": "Commit: https://github.com/rabbitmq/rabbitmq-server/commit/${{ github.sha }}, pushed at: ${{ github.event.repository.pushed_at }}", | |
"prerelease": true, | |
"prerelease_kind": "alpha", | |
"prerelease_identifier": "${{ env.PRERELEASE_IDENTIFIER }}", | |
"release_title": "RabbitMQ ${{ vars.SERVER_41_NEXT_PATCH_VERSION }}-alpha.${{ env.PRERELEASE_IDENTIFIER }} (from ${{ github.event.repository.pushed_at }})", | |
"base_version": "${{ vars.SERVER_41_NEXT_PATCH_VERSION }}" | |
} |