mirror of
https://github.com/UltimMC/Launcher.git
synced 2025-10-03 16:51:30 +00:00
Create dispatch.yml
This commit is contained in:
20
.github/workflows/dispatch.yml
vendored
Normal file
20
.github/workflows/dispatch.yml
vendored
Normal 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
|
Reference in New Issue
Block a user