Compare commits

...

1 Commits

Author SHA1 Message Date
DN6
d07dafa2fa update 2026-04-01 10:38:55 +05:30
2 changed files with 114 additions and 0 deletions

97
.github/labeler.yml vendored Normal file
View File

@@ -0,0 +1,97 @@
# https://github.com/actions/labeler
pipelines:
- changed-files:
- any-glob-to-any-file:
- src/diffusers/pipelines/**
models:
- changed-files:
- any-glob-to-any-file:
- src/diffusers/models/**
schedulers:
- changed-files:
- any-glob-to-any-file:
- src/diffusers/schedulers/**
loaders/single file:
- changed-files:
- any-glob-to-any-file:
- src/diffusers/loaders/single_file.py
- src/diffusers/loaders/single_file_model.py
- src/diffusers/loaders/single_file_utils.py
loaders/ip adapter:
- changed-files:
- any-glob-to-any-file:
- src/diffusers/loaders/ip_adapter.py
loaders/lora:
- changed-files:
- any-glob-to-any-file:
- src/diffusers/loaders/lora_base.py
- src/diffusers/loaders/lora_conversion_utils.py
- src/diffusers/loaders/lora_pipeline.py
- src/diffusers/loaders/peft.py
loaders:
- changed-files:
- any-glob-to-any-file:
- src/diffusers/loaders/textual_inversion.py
- src/diffusers/loaders/transformer_flux.py
- src/diffusers/loaders/transformer_sd3.py
- src/diffusers/loaders/unet.py
- src/diffusers/loaders/unet_loader_utils.py
- src/diffusers/loaders/utils.py
- src/diffusers/loaders/__init__.py
quantization:
- changed-files:
- any-glob-to-any-file:
- src/diffusers/quantizers/**
hooks:
- changed-files:
- any-glob-to-any-file:
- src/diffusers/hooks/**
guiders:
- changed-files:
- any-glob-to-any-file:
- src/diffusers/guiders/**
modular pipelines:
- changed-files:
- any-glob-to-any-file:
- src/diffusers/modular_pipelines/**
experimental:
- changed-files:
- any-glob-to-any-file:
- src/diffusers/experimental/**
documentation:
- changed-files:
- any-glob-to-any-file:
- docs/**
tests:
- changed-files:
- any-glob-to-any-file:
- tests/**
examples:
- changed-files:
- any-glob-to-any-file:
- examples/**
CI:
- changed-files:
- any-glob-to-any-file:
- .github/**
utils:
- changed-files:
- any-glob-to-any-file:
- src/diffusers/utils/**
- src/diffusers/commands/**

17
.github/workflows/labeler.yml vendored Normal file
View File

@@ -0,0 +1,17 @@
name: PR Labeler
on:
pull_request_target:
types: [opened, synchronize, reopened]
permissions:
contents: read
pull-requests: write
jobs:
label:
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v5
with:
sync-labels: true