summaryrefslogtreecommitdiffstats
path: root/.github/workflows/stale.yaml
blob: 2c7841b20d650fb06d7a545cf83732ece3288702 (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: '30 1 * * *'

permissions:
  issues: write

jobs:
  stale:
    runs-on: ubuntu-22.04

    steps:
    - uses: actions/stale@v9
      with:
        stale-issue-message: 'This issue is stale because it has been open 30 days with no activity.  Remove stale label or comment or this will be closed in 7 days.'
        days-before-stale: 30
        days-before-close: 7
        exempt-all-milestones: true