Skip to content

Commit

Permalink
Update - clean-closed, close-stale workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
classicrocker883 committed Aug 7, 2024
1 parent bd363b3 commit f16eddd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/clean-closed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ jobs:
- "S: Please Merge"
- "S: Please Test"
- "help wanted"
- "Bug: Potential ?"
- "bug"
- "work-in-progress"
- "Needs: Discussion"
- "Needs: Documentation"
- "Needs: More Data"
Expand Down
12 changes: 9 additions & 3 deletions .github/workflows/close-stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name: Close Stale Issues

on:
schedule:
- cron: "22 1 3 * *"
- cron: '22 1 * * 0'

jobs:
stale:
Expand All @@ -21,8 +21,14 @@ jobs:
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has had no activity in the last 60 days. Please add a reply if you want to keep this issue active, otherwise it will be automatically closed within 10 days.'
stale-pr-message: 'This pull request has had no activity in the last 60 days. Please update your branch.'
close-issue-message: 'This issue was closed because it has had no activity in the last 10 days.'
days-before-stale: 60
days-before-close: 10
stale-issue-label: 'stale-closing-soon'
days-before-pr-close: -1
stale-issue-label: 'Stale'
stale-pr-label: 'Stale'
remove-stale-when-updated: true
exempt-all-assignees: true
exempt-issue-labels: 'Bug: Confirmed !,T: Feature Request,Needs: More Data,Needs: Discussion,Needs: Documentation,Needs: Patch,Needs: Work,Needs: Testing,help wanted,no-locking'
exempt-issue-labels: 'bug,Feature Request,Needs: More Data,Needs: Discussion,Needs: Documentation,Needs: Patch,Needs: Work,Needs: Testing,help wanted,no-locking,work-in-progress'
close-issue-reason: 'will not fix,false alarm,duplicate'

0 comments on commit f16eddd

Please sign in to comment.