Skip to content

Commit

Permalink
Reinstate file that was wrongly merged
Browse files Browse the repository at this point in the history
  • Loading branch information
rickardp committed Jan 31, 2024
1 parent 1f35064 commit 816eee0
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/stale.yml.disabled
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Stale Bot

on:
schedule:
- cron: "0 15 * * *"

jobs:
close_stale_issues:
name: Close Stale Issues
if: github.repository == 'TimDettmers/bitsandbytes'
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.8

- name: Install requirements
run: |
pip install PyGithub
- name: Close stale issues
run: |
python scripts/stale.py

0 comments on commit 816eee0

Please sign in to comment.