Problem Statement
Contributors take time to report bugs or request features. When an issue is closed, it's nice to give them a warm send-off automatically.
Proposed Solution
Create a workflow listening to the issues.closed event. If the issue is closed with the reason completed (meaning it wasn't closed as not planned or spam), the GitHub Action should drop a comment: "This issue has been successfully resolved! Thank you for your contribution to OSSfolio 🚀."
Alternatives Considered
Typing it out manually every time.
Additional Context
Use actions/github-script to post the comment.
Problem Statement
Contributors take time to report bugs or request features. When an issue is closed, it's nice to give them a warm send-off automatically.
Proposed Solution
Create a workflow listening to the
issues.closedevent. If the issue is closed with the reasoncompleted(meaning it wasn't closed asnot plannedor spam), the GitHub Action should drop a comment: "This issue has been successfully resolved! Thank you for your contribution to OSSfolio 🚀."Alternatives Considered
Typing it out manually every time.
Additional Context
Use
actions/github-scriptto post the comment.