firefly-iii/.github/workflows/closed-issues.yml

24 lines
926 B
YAML
Raw Normal View History

name: "Reply to closed issue"
2023-02-19 01:52:46 -06:00
on:
issues:
types:
- closed
2023-02-19 01:52:46 -06:00
jobs:
auto_comment:
runs-on: ubuntu-latest
2023-02-19 01:52:46 -06:00
steps:
-
uses: aws-actions/closed-issue-message@v1
2023-02-19 01:52:46 -06:00
with:
message: |
Hi there! This is an automatic reply. `Share and enjoy`
2023-05-29 05:05:45 -05:00
This issue is now 🔒 closed. Please be aware that closed issues are **not** watched. If you reply, you may get no response.
2023-02-19 01:52:46 -06:00
- If the original bug is not actually fixed, please feel free to open a new issue. Please refer to this issue for clarity.
2023-05-29 05:05:45 -05:00
- 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**.
2023-05-29 05:05:45 -05:00
Thank you for your contributions.
repo-token: "${{ secrets.GITHUB_TOKEN }}"