mirror of
https://github.com/huggingface/diffusers.git
synced 2026-04-24 00:39:20 +08:00
* drop python 3.8 * remove list, tuple, dict from typing * fold Unions into | * up * fix a bunch and please me. * up * up * up * up * up * up * enforce 3.10.0. * up * up * up * up * up * up * up * up * Update setup.py Co-authored-by: Dhruv Nair <dhruv.nair@gmail.com> * up. * python 3.10. * ifx * up * up * up * up * final * up * fix typing utils. * up * up * up * up * up * up * fix * up * up * up * up * up * up * handle modern types. * up * up * fix ip adapter type checking. * up * up * up * up * up * up * up * revert docstring changes. * keep deleted files deleted. * keep deleted files deleted. --------- Co-authored-by: Dhruv Nair <dhruv.nair@gmail.com>
31 lines
612 B
YAML
31 lines
612 B
YAML
name: Stale Bot
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 15 * * *"
|
|
|
|
jobs:
|
|
close_stale_issues:
|
|
name: Close Stale Issues
|
|
if: github.repository == 'huggingface/diffusers'
|
|
runs-on: ubuntu-22.04
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v6
|
|
with:
|
|
python-version: 3.10
|
|
|
|
- name: Install requirements
|
|
run: |
|
|
pip install PyGithub
|
|
- name: Close stale issues
|
|
run: |
|
|
python utils/stale.py
|