mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-05-30 10:57:23 +08:00
Shrinks this workflow from ~210 lines to ~20 by delegating the detection logic to a centralized reusable workflow in Comfy-Org/github-workflows. Future changes ship from that one repo and propagate here automatically.
21 lines
535 B
YAML
21 lines
535 B
YAML
name: Detect Unreviewed Merge
|
|
|
|
# SOC 2 compliance — reusable workflow lives in Comfy-Org/github-workflows,
|
|
# tracking issues are filed in Comfy-Org/unreviewed-merges.
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
|
|
concurrency:
|
|
group: detect-unreviewed-merge-${{ github.sha }}
|
|
cancel-in-progress: false
|
|
|
|
jobs:
|
|
detect:
|
|
uses: Comfy-Org/github-workflows/.github/workflows/detect-unreviewed-merge.yml@v1
|
|
with:
|
|
approval-mode: latest-per-reviewer
|
|
secrets:
|
|
UNREVIEWED_MERGES_TOKEN: ${{ secrets.UNREVIEWED_MERGES_TOKEN }}
|