Skip to content

Commit

Permalink
Merge pull request mixxxdj#11089 from daschuer/incomplete_issues
Browse files Browse the repository at this point in the history
Close incomplete issues after 60 days.
  • Loading branch information
Swiftb0y authored Nov 23, 2022
2 parents 8affbbb + 7f637af commit 9965d55
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow

name: "Detect stale issues"
name: "Detect stale issues and pull request"
on:
schedule:
- cron: "0 0 * * *"
Expand All @@ -18,10 +18,13 @@ jobs:
- uses: actions/stale@v6
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: "This issue is marked as stale because it has been open 90 days with no activity."
stale-issue-label: "stale"
stale-pr-message: "This PR is marked as stale because it has been open 90 days with no activity."
stale-pr-label: "stale"
days-before-stale: 90
days-before-close: -1
days-before-pr-stale: 90
days-before-pr-close: -1
exempt-pr-labels: "needs review"
close-issue-message: "Expired for Mixxx because there has been no activity for 60 days."
stale-issue-label: "stale"
days-before-issue-stale: 60
days-before-issue-close: 0
only-issue-labels: "incomplete"

0 comments on commit 9965d55

Please sign in to comment.