blob: 972d0c75fb059d710a0e4f435f360fce6f6efe34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
name: Lock Issues
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
permissions:
issues: "write"
jobs:
lock:
if: github.repository_owner == 'pyca'
runs-on: ubuntu-latest
steps:
- uses: dessant/lock-threads@e460dfeb36e731f3aeb214be6b0c9a9d9a67eda6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
issue-inactive-days: 90
pr-inactive-days: 90
|