Skip to content

Commit

Permalink
feat: add workflow for staling prs and issues
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-webber committed Aug 13, 2024
1 parent 0f7f0f6 commit 9a420d6
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/issue-pr-staler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '30 1 * * *'

permissions:
contents: write # only for delete-branch option
issues: write
pull-requests: write

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
stale-issue-message: 'This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
stale-pr-message: 'This PR is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
close-issue-message: 'This issue was closed because it has been stalled for 7 days with no activity.'
exempt-pr-labels: dependencies
days-before-stale: 60
days-before-close: 7
days-before-pr-close: -1

0 comments on commit 9a420d6

Please sign in to comment.