mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-05-06 23:32:30 +08:00
Automated security fixes applied by Runner Guard (https://github.com/Vigilant-LLC/runner-guard). Changes: .github/workflows/check-ai-co-authors.yml | 4 +++- .github/workflows/check-line-endings.yml | 5 ++++- .github/workflows/pullrequest-ci-run.yml | 2 +- .github/workflows/stable-release.yml | 2 +- .github/workflows/test-ci.yml | 4 ++-- .github/workflows/update-api-stubs.yml | 2 +- .github/workflows/update-ci-container.yml | 2 +- .github/workflows/update-version.yml | 9 ++++++--- .github/workflows/windows_release_nightly_pytorch.yml | 2 +- .github/workflows/windows_release_package.yml | 2 +- 10 files changed, 21 insertions(+), 13 deletions(-)
22 lines
536 B
YAML
22 lines
536 B
YAML
name: Check AI Co-Authors
|
|
|
|
on:
|
|
pull_request:
|
|
branches: ['*']
|
|
|
|
jobs:
|
|
check-ai-co-authors:
|
|
name: Check for AI agent co-author trailers
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Check commits for AI co-author trailers
|
|
run: bash .github/scripts/check-ai-co-authors.sh "${{ github.event.pull_request.base.sha }}" "${PR_HEAD_SHA}"
|
|
env:
|
|
PR_HEAD_SHA: ${{ github.event.pull_request.head.sha }}
|