xref: /plugin/spatialhelper/.github/workflows/maintenance.yml (revision 0088b225441aefe845fd0ac90d9084887d4c0abe)
1name: 'Repository Maintenance'
2
3on:
4  schedule:
5    - cron: '23 3 * * 6'
6
7jobs:
8  lock:
9    runs-on: ubuntu-latest
10    name: 'Lock stale issues and PRs'
11    steps:
12      - uses: dessant/lock-threads@v3
13        with:
14          github-token: ${{ github.token }}
15          issue-inactive-days: '90'
16          exclude-any-issue-labels: 'enhancement, help wanted, pull request accepted'
17          pr-inactive-days: '60'
18