Skip to content

Commit 835c77b

Browse files
authored
chore: Add GitHub Action to auto comment if customers comment on a closed issue (#3479)
1 parent 0eb25c1 commit 835c77b

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Closed issue message
2+
3+
on:
4+
issues:
5+
types: [ closed ]
6+
jobs:
7+
auto_comment:
8+
runs-on: ubuntu-latest
9+
permissions:
10+
issues: write
11+
steps:
12+
- uses: aws-actions/closed-issue-message@v1
13+
with:
14+
# These inputs are both required
15+
repo-token: "${{ secrets.GITHUB_TOKEN }}"
16+
message: |
17+
### ⚠️COMMENT VISIBILITY WARNING⚠️
18+
Comments on closed issues are hard for our team to see.
19+
If you need more assistance, please either tag a team member or open a new issue that references this one.
20+
If you wish to keep having a conversation with other community members under this issue feel free to do so.

0 commit comments

Comments
 (0)