Skip to content

Commit

Permalink
chore(stale): move from deprecated probot-no-response to github stale…
Browse files Browse the repository at this point in the history
… action to mark stale issues & PRs after 60 days and then close them after another 7 days

See
- https://github.com/actions/stale
- https://github.com/probot/no-response

Closes #2747
  • Loading branch information
aschaber1 committed Apr 15, 2023
1 parent 4d8ac83 commit 0c1f0dc
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 13 deletions.
13 changes: 0 additions & 13 deletions .github/no-response.yml

This file was deleted.

16 changes: 16 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: 'Remove labels when the issue or PR becomes stale'
on:
schedule:
- cron: '30 1 * * *'

permissions:
issues: write
pull-requests: write

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
debug-only: true

0 comments on commit 0c1f0dc

Please sign in to comment.