blob: 951b705460664c0d205eeb71cc7b798fb63d0e15 (
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@c1b35aecc5cdb1a34539d14196df55838bb2f836
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
issue-inactive-days: 90
pr-inactive-days: 90
|