Create closed-issues.yml

Add a new workflow for closed issues.
This commit is contained in:
James Cole 2022-08-06 15:30:45 +00:00 committed by GitHub
parent 20dfeae653
commit bba362fb58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

21
.github/workflows/closed-issues.yml vendored Normal file
View File

@ -0,0 +1,21 @@
name: Reply to closed issue
on:
issues:
types: [closed]
jobs:
auto_comment:
runs-on: ubuntu-latest
steps:
- uses: aws-actions/closed-issue-message@v1
with:
# These inputs are both required
repo-token: "${{ secrets.GITHUB_TOKEN }}"
message: |
Hi there! This is an automatic reply. `Share and enjoy`
This issue is now closed. Please be aware that closed issues are not actively monitored. If you reply, you may get no response.
- If the original bug is not actually fixed, please feel free to open a new ticket. Please refer to this issue for clarity.
- Follow-up questions can also be posted in a new [discussion](https://github.com/firefly-iii/firefly-iii/discussions/)
Thank you for your consideration.