mirror of
https://github.com/home-assistant/supervisor.git
synced 2026-02-22 18:55:21 +00:00
* Bump dessant/lock-threads from 2.1.2 to 3 Bumps [dessant/lock-threads](https://github.com/dessant/lock-threads) from 2.1.2 to 3. - [Release notes](https://github.com/dessant/lock-threads/releases) - [Changelog](https://github.com/dessant/lock-threads/blob/master/CHANGELOG.md) - [Commits](https://github.com/dessant/lock-threads/compare/v2.1.2...v3) --- updated-dependencies: - dependency-name: dessant/lock-threads dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Adjust config for breaking change Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ludeeus <ludeeus@ludeeus.dev>
21 lines
489 B
YAML
21 lines
489 B
YAML
name: Lock
|
|
|
|
# yamllint disable-line rule:truthy
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
|
|
jobs:
|
|
lock:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: dessant/lock-threads@v3
|
|
with:
|
|
github-token: ${{ github.token }}
|
|
issue-inactive-days: "30"
|
|
exclude-issue-created-before: "2020-10-01T00:00:00Z"
|
|
issue-lock-reason: ""
|
|
pr-inactive-days: "1"
|
|
exclude-pr-created-before: "2020-11-01T00:00:00Z"
|
|
pr-lock-reason: ""
|