Skip to content

Commit

Permalink
Merge pull request #185 from thevijayshankersharma/issue-close
Browse files Browse the repository at this point in the history
Automated Greeting Comments on Issue Closure
  • Loading branch information
Sahil1786 committed Jun 19, 2024
2 parents ffcaec6 + 20e0cce commit be15ed3
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/auto-comment-issue-close.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Comment on Issue Close

on:
issues:
types: [closed]

jobs:
greet-on-close:
permissions:
contents: read
issues: write
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
});

0 comments on commit be15ed3

Please sign in to comment.