-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Add GitHub workflows for stale issue/discussions and closed is…
…sue message.
- Loading branch information
1 parent
d090bc8
commit ee29c3d
Showing
3 changed files
with
81 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Closed Issue Message | ||
on: | ||
issues: | ||
types: [closed] | ||
jobs: | ||
auto_comment: | ||
runs-on: ubuntu-latest | ||
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: HandleStaleDiscussions | ||
on: | ||
schedule: | ||
- cron: '0 */4 * * *' | ||
discussion_comment: | ||
types: [created] | ||
|
||
jobs: | ||
handle-stale-discussions: | ||
name: Handle stale discussions | ||
runs-on: ubuntu-latest | ||
permissions: | ||
discussions: write | ||
steps: | ||
- name: Stale discussions action | ||
uses: aws-github-ops/handle-stale-discussions@v1 | ||
env: | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: "Close stale issues" | ||
|
||
# Controls when the action will run. | ||
on: | ||
schedule: | ||
- cron: "0 0 * * *" | ||
|
||
jobs: | ||
cleanup: | ||
runs-on: ubuntu-latest | ||
name: Stale issue job | ||
steps: | ||
- uses: aws-actions/stale-issue-cleanup@v6 | ||
with: | ||
# Setting messages to an empty string will cause the automation to skip | ||
# that category | ||
ancient-issue-message: We have noticed this issue has not received attention in 1 year. We will close this issue for now. If you think this is in error, please feel free to comment and reopen the issue. | ||
stale-issue-message: This issue has not received a response in 5 days. If you want to keep this issue open, please just leave a comment below and auto-close will be canceled. | ||
|
||
# These labels are required | ||
stale-issue-label: closing-soon | ||
exempt-issue-labels: no-autoclose | ||
stale-pr-label: no-pr-activity | ||
exempt-pr-labels: awaiting-approval | ||
response-requested-label: response-requested | ||
|
||
# Don't set closed-for-staleness label to skip closing very old issues | ||
# regardless of label | ||
closed-for-staleness-label: closed-for-staleness | ||
|
||
# Issue timing | ||
days-before-stale: 5 | ||
days-before-close: 2 | ||
days-before-ancient: 36500 | ||
|
||
# If you don't want to mark a issue as being ancient based on a | ||
# threshold of "upvotes", you can set this here. An "upvote" is | ||
# the total number of +1, heart, hooray, and rocket reactions | ||
# on an issue. | ||
minimum-upvotes-to-exempt: 10 | ||
|
||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
#loglevel: DEBUG | ||
# Set dry-run to true to not perform label or close actions. | ||
#dry-run: true | ||
|