Skip to content

Commit

Permalink
CI: manage stale issues + PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
adeebshihadeh committed Aug 13, 2023
1 parent 060aa33 commit f695798
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/stale.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '30 1 * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
stale-issue-message: 'Message to comment on stale issues. If none provided, will not mark issues stale'
stale-pr-message: 'Message to comment on stale PRs. If none provided, will not mark PRs stale'
delete-branch: true
debug-only: true
exempt-milestones: true

0 comments on commit f695798

Please sign in to comment.