mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-09 23:20:27 +00:00
21 lines
414 B
YAML
21 lines
414 B
YAML
|
# lock-threads (https://github.com/marketplace/actions/lock-threads)
|
||
|
name: 'Lock threads'
|
||
|
|
||
|
on:
|
||
|
schedule:
|
||
|
- cron: '0 3 * * *'
|
||
|
workflow_dispatch:
|
||
|
|
||
|
permissions:
|
||
|
issues: write
|
||
|
pull-requests: write
|
||
|
|
||
|
jobs:
|
||
|
lock:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: dessant/lock-threads@v3
|
||
|
with:
|
||
|
issue-inactive-days: 90
|
||
|
pr-inactive-days: 30
|
||
|
issue-lock-reason: 'resolved'
|