Files
awesome-falsehood/.github/workflows/autolock.yaml
dependabot[bot] e214ee2d4b Bump dessant/lock-threads from 2.0.3 to 2.1.1
Bumps [dessant/lock-threads](https://github.com/dessant/lock-threads) from 2.0.3 to 2.1.1.
- [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.0.3...v2.1.1)

---
updated-dependencies:
- dependency-name: dessant/lock-threads
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-07-09 19:02:21 +00:00

30 lines
985 B
YAML

# Locks closed issues and pull requests after a period of inactivity, to
# prevent spam and noise.
---
name: Autolock
"on":
schedule:
# Run weekly, every Monday at 8:43.
- cron: "43 8 * * 1"
jobs:
lock:
runs-on: ubuntu-20.04
steps:
- uses: dessant/lock-threads@v2.1.1
with:
github-token: ${{ github.token }}
# Lock down after 3 months.
issue-lock-inactive-days: '90'
issue-lock-reason: 'resolved'
issue-lock-comment: >
This issue has been automatically locked since there
has not been any recent activity after it was closed.
Please open a new issue for related bugs.
pr-lock-inactive-days: '90'
pr-lock-reason: 'resolved'
pr-lock-comment: >
This pull request has been automatically locked since there
has not been any recent activity after it was closed.
Please open a new issue for related bugs.