Create dispatch.yml

This commit is contained in:
Petr Mrázek 2023-05-14 23:17:06 +02:00 committed by GitHub
parent c6c56e56bd
commit b0844db1df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

20
.github/workflows/dispatch.yml vendored Normal file
View File

@ -0,0 +1,20 @@
name: Dispatcher
on:
push:
branches: ['6']
jobs:
dispatch:
name: Dispatch
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Extract branch name
shell: bash
run: echo "branch=$(echo ${GITHUB_REF#refs/heads/})" >>$GITHUB_OUTPUT
id: extract_branch
- name: Dispatch to workflows
run: |
curl -H "Accept: application/vnd.github.everest-preview+json" \
-H "Authorization: token ${{ secrets.DISPATCH_TOKEN }}" \
--request POST \
--data '{"event_type": "push_to_main_repo", "client_payload": { "branch": "${{ steps.extract_branch.outputs.branch }}" }}' https://api.github.com/repos/MultiMC/Build/dispatches