mirror of
https://github.com/Comfy-Org/ComfyUI.git
synced 2026-08-24 01:56:59 +08:00
ci: add Notify on Merge dispatch workflow
This commit is contained in:
30
.github/workflows/notify-on-merge.yml
vendored
Normal file
30
.github/workflows/notify-on-merge.yml
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
name: Notify on Merge
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
notify:
|
||||
runs-on: ubuntu-latest
|
||||
if: github.repository == 'Comfy-Org/ComfyUI'
|
||||
steps:
|
||||
- name: Notify downstream
|
||||
env:
|
||||
DISPATCH_TOKEN: ${{ secrets.SYNC_DISPATCH_TOKEN }}
|
||||
TARGET_REPO: ${{ secrets.SYNC_TARGET_REPO }}
|
||||
COMMIT_SHA: ${{ github.sha }}
|
||||
run: |
|
||||
set -euo pipefail
|
||||
if [ -z "${DISPATCH_TOKEN:-}" ] || [ -z "${TARGET_REPO:-}" ]; then
|
||||
echo "::error::SYNC_DISPATCH_TOKEN and SYNC_TARGET_REPO are required."
|
||||
exit 1
|
||||
fi
|
||||
PAYLOAD="$(jq -n --arg sha "$COMMIT_SHA" \
|
||||
'{ event_type: "upstream-push", client_payload: { sha: $sha } }')"
|
||||
curl -fsSL -X POST \
|
||||
-H "Accept: application/vnd.github+json" \
|
||||
-H "Authorization: Bearer ${DISPATCH_TOKEN}" \
|
||||
"https://api.github.com/repos/${TARGET_REPO}/dispatches" \
|
||||
-d "$PAYLOAD"
|
||||
Reference in New Issue
Block a user