summaryrefslogtreecommitdiffstats
path: root/.github/workflows/stale.yml
blob: ac26b250fc079a3f1e35d6c3e50416bb4fdc284f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: "Close 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: 'Issue is stale and will be closed in 7 days unless there is new activity'
        stale-pr-message: 'PR is stale and will be closed in 7 days unless there is new activity'
        stale-issue-label: 'meta/stale'
        exempt-issue-label: 'meta/stale-exempt'
        stale-pr-label: 'meta/stale'
        exempt-pr-label: 'meta/stale-exempt'
        remove-stale-when-updated: true