Skip to content

Commit

Permalink
Merge pull request #224 from juaml/chore/add-stale-workflow
Browse files Browse the repository at this point in the history
[CI]: Mark stale and close issues after inactivity
  • Loading branch information
synchon authored Mar 6, 2024
2 parents d1f915e + 53b8bcb commit 8c908ce
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/check-stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: 'Close stale issues'

on:
schedule:
- cron: '30 1 * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
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 7 days.'
days-before-stale: 30
days-before-close: 7
any-of-issue-labels: question
1 change: 1 addition & 0 deletions docs/changes/newsfragments/224.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add a new GitHub Action to mark stale issues by `Synchon Mandal`_

0 comments on commit 8c908ce

Please sign in to comment.