Skip to content

Commit

Permalink
Added auto commenting workflow when an issue is closed (#1028)
Browse files Browse the repository at this point in the history
  • Loading branch information
Asymtode712 authored Jun 4, 2024
1 parent a731a4b commit b02421f
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/issue-close-comment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Comment on Issue Close

on:
issues:
types: [closed]

permissions:
issues: write

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 b02421f

Please sign in to comment.