Skip to content

Commit

Permalink
add github action to automatically handle stale user support issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Aug 29, 2024
1 parent ea3f39b commit a89d576
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/stale-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: 'Close stale issues'
on:
schedule:
# Run daily at 430 am PT
- cron: '30 11 * * *'
permissions:
issues: write

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
stale-issue-message: 'This issue is being marked stale because it has not had any activity for 30 days. Reply below within 7 days if it should be left open.'
days-before-stale: 30
days-before-close: 7
stale-issue-label: 'Stale'
only-labels: 'User Support'
exempt-all-assignees: true
exempt-all-milestones: true

0 comments on commit a89d576

Please sign in to comment.