Skip to content

Commit

Permalink
chore: add stale workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
onbjerg committed Jul 3, 2023
1 parent d848668 commit 628fdbc
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: stale issues
on:
schedule:
- cron: "30 1 * * *"

jobs:
close-issues:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v8
with:
days-before-stale: 14
days-before-close: 7
stale-issue-label: "S-stale"
exempt-issue-labels: "M-prevent-stale"
stale-issue-message: "This issue is stale because it has been open for 14 days with no activity."
close-issue-message: "This issue was closed because it has been inactive for 7 days since being marked as stale."
exempt-all-milestones: true
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 628fdbc

Please sign in to comment.