Bumps [dessant/lock-threads](https://github.com/dessant/lock-threads) from 6.0.1 to 6.0.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dessant/lock-threads/releases">dessant/lock-threads's releases</a>.</em></p> <blockquote> <h2>v6.0.2</h2> <p>Learn more about this release from the <a href="https://github.com/dessant/lock-threads/blob/main/CHANGELOG.md#changelog">changelog</a>.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/dessant/lock-threads/blob/main/CHANGELOG.md">dessant/lock-threads's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/dessant/lock-threads/compare/v6.0.1...v6.0.2">6.0.2</a> (2026-05-23)</h2> <h3>Bug Fixes</h3> <ul> <li>update github-token validation schema (<a href="https://github.com/dessant/lock-threads/commit/a329c89d09f15f65ee0fc0c36ed36f957598ff68">a329c89</a>), closes <a href="https://redirect.github.com/dessant/lock-threads/issues/55">#55</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dessant/lock-threads/commit/89ae32b08ed1a541efecbab17912962a5e38981c"><code>89ae32b</code></a> chore(release): 6.0.2</li> <li><a href="https://github.com/dessant/lock-threads/commit/020bb294228b89d5065f5d06621398fe679768eb"><code>020bb29</code></a> chore: update package</li> <li><a href="https://github.com/dessant/lock-threads/commit/a329c89d09f15f65ee0fc0c36ed36f957598ff68"><code>a329c89</code></a> fix: update github-token validation schema</li> <li>See full diff in <a href="https://github.com/dessant/lock-threads/compare/v6.0.1...v6.0.2">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
22 lines
470 B
YAML
22 lines
470 B
YAML
name: Lock
|
|
|
|
# yamllint disable-line rule:truthy
|
|
on:
|
|
schedule:
|
|
- cron: '23 13 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
lock:
|
|
if: github.repository_owner == 'dermotduffy'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: dessant/lock-threads@v6.0.2
|
|
with:
|
|
github-token: ${{ github.token }}
|
|
issue-inactive-days: '30'
|
|
issue-lock-reason: ''
|
|
pr-inactive-days: '30'
|
|
pr-lock-reason: ''
|
|
log-output: true
|