Skip to content

Commit

Permalink
Close incomplete issues after 60 days.
Browse files Browse the repository at this point in the history
This has been proven as useful in Launchpad
https://help.launchpad.net/BugExpiry
  • Loading branch information
daschuer committed Nov 23, 2022
1 parent 8affbbb commit 7f637af
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 7f637af

Please sign in to comment.