Skip to content

Commit

Permalink
Add GitHub Actions workflow to close stale issues
Browse files Browse the repository at this point in the history
  • Loading branch information
wojtekmaj committed Jun 29, 2023
1 parent 8182ecc commit 9c89df4
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/close-stale-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Close stale issues

on:
schedule:
- cron: '0 0 * * 1' # Every Monday
workflow_dispatch:

jobs:
close-issues:
name: Close stale issues
runs-on: ubuntu-latest

steps:
- name: Close stale issues
uses: actions/stale@v6
with:
days-before-issue-stale: 90
days-before-issue-close: 14
stale-issue-label: 'stale'
stale-issue-message: 'This issue is stale because it has been open 90 days with no activity. Remove stale label or comment or this issue will be closed in 14 days.'
close-issue-message: 'This issue was closed because it has been stalled for 14 days with no activity.'
exempt-issue-labels: 'fresh'
remove-issue-stale-when-updated: true
days-before-pr-stale: -1
days-before-pr-close: -1

0 comments on commit 9c89df4

Please sign in to comment.