Skip to content

Commit

Permalink
ci: Add stale workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundmiller committed Feb 20, 2024
1 parent 9171c29 commit 311dc6a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: "Close stale issues and PRs"
on:
schedule:
- cron: "30 1 * * *"

jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v9
with:
enable-statistics: true
debug-only: true
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"

0 comments on commit 311dc6a

Please sign in to comment.