Skip to content

Commit

Permalink
updated to new stale action
Browse files Browse the repository at this point in the history
  • Loading branch information
mexikoedi committed Feb 11, 2024
1 parent 4ceed3b commit 910bd3f
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 16 deletions.
16 changes: 0 additions & 16 deletions .github/stale.yml

This file was deleted.

24 changes: 24 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Stale action
# Visit following website for more information: https://github.com/marketplace/actions/close-stale-issues
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '0 0 * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
days-before-stale: 60
days-before-close: 7
exempt-issue-labels: 'accepted'
stale-issue-label: 'stale'
stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.'
close-issue-message: 'Closing because no activity occured. Thank you for your contributions.'
exempt-pr-labels: 'accepted'
stale-pr-label: 'stale'
stale-pr-message: 'This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.'
close-pr-message: 'Closing because no activity occured. Thank you for your contributions.'
remove-stale-when-updated: true

0 comments on commit 910bd3f

Please sign in to comment.