mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-11 00:22:53 -06:00
23 lines
916 B
YAML
23 lines
916 B
YAML
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:
|
|
message: |
|
|
Hi there! This is an automatic reply. `Share and enjoy`
|
|
|
|
This issue is now 🔒 closed. Please be aware that closed issues are **not** watched.
|
|
|
|
- If the original bug is not actually fixed, please feel free to open [a new issue](https://github.com/firefly-iii/firefly-iii/issues/new/choose). Please refer to this issue for clarity.
|
|
- Follow-up questions must be posted in a new [discussion](https://github.com/firefly-iii/firefly-iii/discussions/)
|
|
- Further replies to this issue will get **no response**.
|
|
|
|
Thank you for your contributions.
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|