summaryrefslogtreecommitdiffstats
path: root/.github/workflows/stale.yml
blob: c415950fbd02313700cc6c27b10f55fda963d59d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: "Detect stale issues"
on:
  schedule:
  - cron: "0 0 * * *"

jobs:
  stale:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/stale@v3
      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