Skip to content

Commit

Permalink
Merge pull request #20 from UppuluriKalyani/UppuluriKalyani-patch-1
Browse files Browse the repository at this point in the history
Create autocomment-iss-close.yml
  • Loading branch information
UppuluriKalyani committed Sep 22, 2024
2 parents f7d5474 + fd3b1d4 commit 3429eb8
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/autocomment-iss-close.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
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@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 3429eb8

Please sign in to comment.