Merge bbcfbb9f7ea9bd3ca8547b17c83071c6fa7e97d9 into 88c42635384d52ccc28bbcc2750cc040e07e2e82

This commit is contained in:
Pierre F. 2026-06-02 21:49:50 +08:00 committed by GitHub
commit 8b94d54f6d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

21
.github/workflows/stale.yml vendored Normal file
View File

@ -0,0 +1,21 @@
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
name: Mark stale issues
on:
schedule:
- cron: '00 2 * * *'
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/stale@v5
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'Hey there, this issue will be closed after 7 days of inactivity'
stale-issue-label: 'stale'
close-issue-message: 'Closed for inactivity feel free to reopen if relevant'