Merge commit '3d0a3ee2264430720329aefd1e10ac27f57c258f' into fluffychat-merge-2

This commit is contained in:
ggurdin 2026-02-02 13:43:45 -05:00
commit 098fcff4c5
No known key found for this signature in database
GPG key ID: A01CB41737CBB478

View file

@ -0,0 +1,24 @@
name: Completed Issue Comment
on:
issues:
types: [labeled]
jobs:
completed_issue_comment:
if: github.event.label.name == 'status:completed'
runs-on: ubuntu-latest
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- run: |
gh issue comment ${{ github.event.issue.number }} --body "$(cat <<EOF
Thank you so much for reporting this issue and helping us improve FluffyChat! 💬💖
This project is built and maintained by volunteers in their free time.
If you enjoyed using FluffyChat and want to support the people behind it,
you can say thanks by buying us a coffee or chipping in:
☕ https://ko-fi.com/krille
💜 https://liberapay.com/KrilleChritzelius
EOF
)"