mirror of
https://github.com/huggingface/peft.git
synced 2025-10-20 15:33:48 +08:00
The end of life of Python 3.8 has arrived: https://devguide.python.org/versions/ Therefore, Python 3.8 is removed from CI. By default, Python 3.11 is now used. Python 3.12 should be added to the CI matrix now, but that's for a separate PR. Also fixed: The workflow tried to build on top of docker/README.md because globbing was too broadly defined. Reduce unnecessary steps to hopefully get disk space usage down, as GitHub action currently fails with not enough disk space.
31 lines
610 B
YAML
31 lines
610 B
YAML
name: Stale Bot
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 15 * * *"
|
|
|
|
jobs:
|
|
close_stale_issues:
|
|
name: Close Stale Issues
|
|
if: github.repository == 'huggingface/peft'
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: 3.11
|
|
|
|
- name: Install requirements
|
|
run: |
|
|
pip install PyGithub
|
|
- name: Close stale issues
|
|
run: |
|
|
python scripts/stale.py
|