18 lines
444 B
YAML
18 lines
444 B
YAML
|
name: 'Lock closed issues/PRs'
|
||
|
on:
|
||
|
schedule:
|
||
|
- cron: '11 3 * * *'
|
||
|
workflow_dispatch:
|
||
|
jobs:
|
||
|
lock:
|
||
|
if: github.repository_owner == 'getsentry'
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: getsentry/forked-action-lock-threads@master
|
||
|
with:
|
||
|
github-token: ${{ github.token }}
|
||
|
issue-lock-inactive-days: 15
|
||
|
issue-lock-reason: ''
|
||
|
pr-lock-inactive-days: 15
|
||
|
pr-lock-reason: ''
|