Do work on the pending Issues first and then open new Issues. Please update if 2-3 days passed but still working. Or it will be late from contributors side. #1456
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Comment on Issue Close | |
on: | |
issues: | |
types: [closed] | |
jobs: | |
greet-on-close: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Greet User | |
uses: actions/github-script@v5 | |
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 closed. Thank you for your contribution!`; | |
github.rest.issues.createComment({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: issueNumber, | |
body: greetingMessage | |
}); |