Skip to content

πŸ§‘β€πŸ’» : Enhancing the Footer #496

πŸ§‘β€πŸ’» : Enhancing the Footer

πŸ§‘β€πŸ’» : Enhancing the Footer #496

Workflow file for this run

name: Comment on Issue Close
on:
issues:
types: [closed]
jobs:
greet-on-close:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Greet User
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const issue = context.payload.issue;
const issueCreator = issue.user.login;
const issueNumber = issue.number;
const greetingMessage = `Hello @${issueCreator}! Your issue #${issueNumber} has been successfully closed. βœ… Thank you for your contribution and helping us improve the project! If you have any more ideas or run into other issues, feel free to open a new one. Happy coding! πŸš€`;
(async () => {
await github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: issueNumber,
body: greetingMessage
});
})();