mirror of
https://github.com/esphome/esphome.git
synced 2024-11-01 08:37:10 +01:00
499e120aa4
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
30 lines
518 B
YAML
30 lines
518 B
YAML
---
|
|
name: Lock
|
|
|
|
# yamllint disable-line rule:truthy
|
|
on:
|
|
schedule:
|
|
- cron: "30 0 * * *"
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
concurrency:
|
|
group: lock
|
|
|
|
jobs:
|
|
lock:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: dessant/lock-threads@v4
|
|
with:
|
|
pr-inactive-days: "1"
|
|
pr-lock-reason: ""
|
|
exclude-any-pr-labels: keep-open
|
|
|
|
issue-inactive-days: "7"
|
|
issue-lock-reason: ""
|
|
exclude-any-issue-labels: keep-open
|