Skip to content

Commit

Permalink
Adding configuration for stale issues.
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
diemol committed Oct 18, 2021
1 parent 67444b8 commit ee59a57
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Configuration for Stale - https://github.com/actions/stale
name: 'Close stale issues'
on:
workflow_dispatch:
schedule:
- cron: '15 10,20 * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
with:
stale-issue-message: 'This issue is stale because it has been open 365 days with no activity. Remove stale label or comment or this will be closed in 14 days.'
close-issue-message: 'This issue was closed because it has been stalled for 14 days with no activity.'
stale-issue-label: 'I-stale'
exempt-issue-labels: 'help wanted'
days-before-stale: 365
days-before-close: 14

0 comments on commit ee59a57

Please sign in to comment.