* update pre-commit hooks * add devcontainer * show url in publish environment * update actions versions * separate typing job * use dependabot grouped updates ignore upload/download-artifact until slsa updates * use sphinx.ext.extlinks instead of sphinx-issues * update editorconfig * update gitignore * update .readthedocs.yaml * license is txt, readme is md * use pyproject.toml and flit_core instead of setuptools add typed classifier add pyright config simplify urls * tox builds docs in place * add tox env to update all dev dependencies * update issue and pr templates * simplify matrix
24 lines
661 B
YAML
24 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
|