ComfyUI/.github/workflows/detect-unreviewed-merge.yml
Luke Mino-Altherr 612269bff2 Bump detector SHA to pick up Octokit-constructor fix
Bumps reusable workflow to Comfy-Org/github-workflows@f6b3855, which
swaps github.getOctokit() (not a function in actions/github-script v7
inline-script context) for new github.constructor({ auth: token }) —
reusing the plugin-loaded Octokit class off the existing instance,
zero module resolution required.

Surfaced by the second cloud smoke test (#3920).
2026-05-27 19:45:11 -07:00

25 lines
631 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
permissions:
contents: read
pull-requests: read
jobs:
detect:
uses: Comfy-Org/github-workflows/.github/workflows/detect-unreviewed-merge.yml@f6b3855ef58844cb5fac714ce14f72c5a12955ca # v1
with:
approval-mode: latest-per-reviewer
secrets:
UNREVIEWED_MERGES_TOKEN: ${{ secrets.UNREVIEWED_MERGES_TOKEN }}