mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-11 09:29:34 +00:00
29 lines
856 B
YAML
29 lines
856 B
YAML
name: Lock old issues
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
|
|
jobs:
|
|
lock:
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: dessant/lock-threads@v4
|
|
with:
|
|
github-token: ${{ github.token }}
|
|
issue-inactive-days: 90
|
|
pr-inactive-days: 90
|
|
issue-comment: >
|
|
Hi there! This is an automatic reply. `Share and enjoy`
|
|
|
|
This issue is now `locked` :lock:.
|
|
|
|
- If you feel there is more to be said about this specific issue, please feel free to open a new issue. Please refer to this issue for clarity.
|
|
- Follow-up questions and comments can also be posted in a new [discussion](https://github.com/firefly-iii/firefly-iii/discussions/)
|
|
|
|
Thank you for your consideration.
|