Skip to content

Commit

Permalink
stale (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
neonphog authored Sep 26, 2023
1 parent bf2bd91 commit 146e1f0
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Stale
on:
schedule:
- cron: "37 2 * * *"

jobs:
close-issues:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v5
with:
days-before-issue-stale: 30
days-before-issue-close: 14
stale-issue-label: "stale"
stale-issue-message: "This item has been open for 30 days with no activity."
close-issue-message: "This item has been inactive for 14 days since being marked as stale."
days-before-pr-stale: 30
days-before-pr-close: 14
stale-pr-label: "stale"
stale-pr-message: "This item has been open for 30 days with no activity."
close-pr-message: "This item has been inactive for 14 days since being marked as stale."
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 146e1f0

Please sign in to comment.