Skip to content

Back button should be at the right only so user can back after clicking the link from the right side for ease #16

Back button should be at the right only so user can back after clicking the link from the right side for ease

Back button should be at the right only so user can back after clicking the link from the right side for ease #16

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 closed. Thank you for your contribution!`;
github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: issueNumber,
body: greetingMessage
});