Skip to content

Commit

Permalink
ci: add stale workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Jan 12, 2025
1 parent df6e922 commit 71db68d
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 44 deletions.
23 changes: 0 additions & 23 deletions .github/lock.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/stale.yml

This file was deleted.

17 changes: 17 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '30 0 * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
stale-issue-message: 'This issue has been marked as stale because it has been inactive for more than 21 days. Please reopen if you still need help on this issue'
stale-pr-message: 'This pull request has been marked as stale because it has been inactive for more than 21 days. Please reopen if you still intend to submit this pull request'
close-issue-message: 'This issue has been automatically closed because it has been inactive for more than 4 weeks. Please reopen if you still need help on this issue'
close-pr-message: 'This pull request has been automatically closed because it has been inactive for more than 4 weeks. Please reopen if you still intend to submit this pull request'
days-before-stale: 21
days-before-close: 5

0 comments on commit 71db68d

Please sign in to comment.