mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-05-30 19:07:25 +08:00
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).
25 lines
631 B
YAML
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 }}
|