Stale Bot #395
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Stale Bot | |
on: | |
schedule: | |
- cron: "0 15 * * *" | |
jobs: | |
close_stale_issues: | |
name: Close Stale Issues | |
if: github.repository == 'huggingface/diffusers' | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.7 | |
- name: Install requirements | |
run: | | |
pip install PyGithub | |
- name: Close stale issues | |
run: | | |
python utils/stale.py |