Skip to content

Commit

Permalink
feat: Implement Auto-Comment Feature for Issue Closure (#378)
Browse files Browse the repository at this point in the history
Co-authored-by: Sanchit Bajaj <[email protected]>
  • Loading branch information
thevijayshankersharma and Sanchitbajaj02 authored Jun 17, 2024
1 parent 577e63d commit 3f5387b
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/autocomment-iss-close.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
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
});

0 comments on commit 3f5387b

Please sign in to comment.