mirror of
https://github.com/hassio-addons/addon-tasmoadmin.git
synced 2025-05-04 11:01:27 +00:00
21 lines
437 B
YAML
21 lines
437 B
YAML
---
|
|
name: Lock
|
|
|
|
# yamllint disable-line rule:truthy
|
|
on:
|
|
schedule:
|
|
- cron: "0 9 * * *"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
lock:
|
|
name: 🔒 Lock closed issues and PRs
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: dessant/lock-threads@v3.0.0
|
|
with:
|
|
github-token: ${{ github.token }}
|
|
issue-inactive-days: "30"
|
|
issue-lock-reason: ""
|
|
pr-inactive-days: "1"
|
|
pr-lock-reason: ""
|