-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add close-stale-issues workflow (#3247)
- Loading branch information
1 parent
89612ae
commit 95ab092
Showing
1 changed file
with
31 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,31 @@ | ||
|
||
|
||
name: "Close Stale Issues" | ||
|
||
on: | ||
# allow to run manually when needed | ||
workflow_dispatch: | ||
# at 7:15 and 19:15 every day | ||
schedule: | ||
- cron: "15 7,19 * * *" | ||
|
||
jobs: | ||
cleanup: | ||
permissions: | ||
issues: write | ||
contents: read | ||
runs-on: ubuntu-latest | ||
name: Stale issue job | ||
steps: | ||
- uses: aws-actions/stale-issue-cleanup@v6 | ||
with: | ||
issue-types: issues | ||
|
||
stale-issue-message: This issue will automatically resolve if we don't hear back from you soon. | ||
response-requested-label: response-requested | ||
stale-issue-label: closing-soon | ||
|
||
days-before-stale: 6 | ||
days-before-close: 3 | ||
|
||
repo-token: ${{ secrets.GITHUB_TOKEN }} |