mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-03-10 07:30:08 +00:00
## Summary Dispatch a `frontend-asset-build` event to the cloud repo when the `preview` label is added to a PR, so cloud can build preview assets. ## Changes - **What**: Extended `cloud-dispatch-build.yaml` to trigger on `pull_request` `labeled` events filtered to the `preview` label. The payload sends the PR head SHA and branch. ## Review Focus - The `pull_request` trigger gives a read-only `GITHUB_TOKEN`, but the dispatch step uses `CLOUD_DISPATCH_TOKEN` so this is fine. - Fork PRs are blocked by the existing `github.repository` guard. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-9518-feat-dispatch-cloud-build-when-preview-label-is-added-to-PR-31c6d73d365081a8aab6f585960977f6) by [Unito](https://www.unito.io)
63 lines
2.0 KiB
YAML
63 lines
2.0 KiB
YAML
---
|
|
# Dispatches a frontend-asset-build event to the cloud repo on push to
|
|
# cloud/* branches and main. The cloud repo handles the actual build,
|
|
# GCS upload, and secret management (Sentry, Algolia, GCS creds).
|
|
#
|
|
# This is fire-and-forget — it does NOT wait for the cloud workflow to
|
|
# complete. Status is visible in the cloud repo's Actions tab.
|
|
|
|
name: Cloud Frontend Build Dispatch
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'cloud/*'
|
|
- 'main'
|
|
pull_request:
|
|
types: [labeled]
|
|
workflow_dispatch:
|
|
|
|
permissions: {}
|
|
|
|
concurrency:
|
|
group: cloud-dispatch-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
dispatch:
|
|
# Fork guard: prevent forks from dispatching to the cloud repo.
|
|
# For pull_request events, only dispatch when the 'preview' label is added.
|
|
if: >
|
|
github.repository == 'Comfy-Org/ComfyUI_frontend' &&
|
|
(github.event_name != 'pull_request' ||
|
|
github.event.label.name == 'preview')
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Build client payload
|
|
id: payload
|
|
env:
|
|
EVENT_NAME: ${{ github.event_name }}
|
|
PR_HEAD_SHA: ${{ github.event.pull_request.head.sha }}
|
|
PR_HEAD_REF: ${{ github.event.pull_request.head.ref }}
|
|
run: |
|
|
if [ "${EVENT_NAME}" = "pull_request" ]; then
|
|
REF="${PR_HEAD_SHA}"
|
|
BRANCH="${PR_HEAD_REF}"
|
|
else
|
|
REF="${GITHUB_SHA}"
|
|
BRANCH="${GITHUB_REF_NAME}"
|
|
fi
|
|
payload="$(jq -nc \
|
|
--arg ref "${REF}" \
|
|
--arg branch "${BRANCH}" \
|
|
'{ref: $ref, branch: $branch}')"
|
|
echo "json=${payload}" >> "${GITHUB_OUTPUT}"
|
|
|
|
- name: Dispatch to cloud repo
|
|
uses: peter-evans/repository-dispatch@28959ce8df70de7be546dd1250a005dd32156697 # v4.0.1
|
|
with:
|
|
token: ${{ secrets.CLOUD_DISPATCH_TOKEN }}
|
|
repository: Comfy-Org/cloud
|
|
event-type: frontend-asset-build
|
|
client-payload: ${{ steps.payload.outputs.json }}
|