Skip to content

Commit

Permalink
stale action
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesWoolfenden committed Jun 27, 2023
1 parent 02215b1 commit 43a60d5
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: 'Stale'
on:
schedule:
- cron: '30 1 * * *'
workflow_dispatch:
permissions: read-all

jobs:
stale:
permissions:
contents: write
issues: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/stale@a20b814fb01b71def3bd6f56e7494d667ddf28da # v4.1.1
with:
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
days-before-stale: 30
days-before-close: 5
enable-statistics: true
exempt-issue-labels: enhancement
exempt-pr-labels: enhancement

0 comments on commit 43a60d5

Please sign in to comment.