Skip to content

Commit

Permalink
chore: Add GitHub Action to auto comment if customers comment on a cl…
Browse files Browse the repository at this point in the history
…osed issue (#3479)
  • Loading branch information
GavinZZ committed Dec 22, 2023
1 parent 0eb25c1 commit 835c77b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/close_issue_message.yml
@@ -0,0 +1,20 @@
name: Closed issue message

on:
issues:
types: [ closed ]
jobs:
auto_comment:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: aws-actions/closed-issue-message@v1
with:
# These inputs are both required
repo-token: "${{ secrets.GITHUB_TOKEN }}"
message: |
### ⚠️COMMENT VISIBILITY WARNING⚠️
Comments on closed issues are hard for our team to see.
If you need more assistance, please either tag a team member or open a new issue that references this one.
If you wish to keep having a conversation with other community members under this issue feel free to do so.

0 comments on commit 835c77b

Please sign in to comment.