-
Notifications
You must be signed in to change notification settings - Fork 401
33 lines (27 loc) · 1.11 KB
/
on_closed_issues.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Closed Issue Message
# PROCESS
#
# 1. Comment on recently closed issues to warn future responses may not be looked after
# USAGE
#
# Always triggered upon issue closure
#
on:
issues:
types: [closed]
permissions:
contents: read
jobs:
auto_comment:
runs-on: ubuntu-latest
permissions:
issues: write # comment on issues
steps:
- uses: aws-powertools/actions/.github/actions/close-issue-message@428c1934f4b22c0984ff4a39b66c2f70765bbed6
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
message: |
### ⚠️COMMENT VISIBILITY WARNING⚠️
This issue is now closed. Please be mindful that future comments are hard for our team to see.
If you need more assistance, please either tag a [team member](https://github.com/aws-powertools/powertools-lambda-python/blob/develop/MAINTAINERS.md#current-maintainers) 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.