Skip to content

Commit

Permalink
ci(stale): dry-run(!) enable github stale action to mark stale issues…
Browse files Browse the repository at this point in the history
… & PRs after 60 days and then close them after another 7 days

See https://github.com/actions/stale

See #2747
  • Loading branch information
aschaber1 committed Apr 14, 2023
1 parent 4d8ac83 commit a9fc183
Showing 1 changed file with 16 additions and 0 deletions.
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 a9fc183

Please sign in to comment.