Skip to content

Commit

Permalink
chore: add close-stale-issues workflow (#3247)
Browse files Browse the repository at this point in the history
  • Loading branch information
just-boris authored Feb 5, 2025
1 parent 89612ae commit 95ab092
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/close-stale-issues.yml
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 }}

0 comments on commit 95ab092

Please sign in to comment.