Bumps the github-actions group with 3 updates: [dessant/lock-threads](https://github.com/dessant/lock-threads), [actions/checkout](https://github.com/actions/checkout) and [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish). Updates `dessant/lock-threads` from 7de207be1d3ce97a9abe6ff1306222982d1ca9f9 to 1bf7ec25051fe7c00bdd17e6a7cf3d7bfb7dc771 - [Release notes](https://github.com/dessant/lock-threads/releases) - [Changelog](https://github.com/dessant/lock-threads/blob/main/CHANGELOG.md) - [Commits](7de207be1d...1bf7ec2505) Updates `actions/checkout` from 4.1.1 to 4.1.2 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](b4ffde65f4...9bb56186c3) Updates `pypa/gh-action-pypi-publish` from 68e62d4871ad9d14a9d55f114e6ac71f0b408ec0 to 81e9d935c883d0b210363ab89cf05f3894778450 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](68e62d4871...81e9d935c8) --- updated-dependencies: - dependency-name: dessant/lock-threads dependency-type: direct:production dependency-group: github-actions - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: pypa/gh-action-pypi-publish dependency-type: direct:production dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
23 lines
661 B
YAML
23 lines
661 B
YAML
name: Lock inactive closed issues
|
|
# Lock closed issues that have not received any further activity for two weeks.
|
|
# This does not close open issues, only humans may do that. It is easier to
|
|
# respond to new issues with fresh examples rather than continuing discussions
|
|
# on old issues.
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
concurrency:
|
|
group: lock
|
|
jobs:
|
|
lock:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: dessant/lock-threads@1bf7ec25051fe7c00bdd17e6a7cf3d7bfb7dc771 # v5.0.1
|
|
with:
|
|
issue-inactive-days: 14
|
|
pr-inactive-days: 14
|
|
discussion-inactive-days: 14
|