Skip to content

Commit

Permalink
Merge pull request #6022 from ministryofjustice/add-issue-pr-staler-w…
Browse files Browse the repository at this point in the history
…orkflow

feat: add workflow for staling prs and issues
  • Loading branch information
tom-webber authored Aug 13, 2024
2 parents 0f7f0f6 + ad9250b commit 25ce19d
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.'
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 25ce19d

Please sign in to comment.