mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-09 23:20:27 +00:00
d716f8cc88
Tweaked the name of the stale threads workflow.
22 lines
418 B
YAML
22 lines
418 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' |