Skip to content

Commit

Permalink
add stale.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
supernovahs committed Jun 12, 2024
1 parent 36c3996 commit 59bd910
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Marks issues as stale.

name: stale issues

on:
workflow_dispatch: {}
schedule:
- cron: "30 1 * * *"

jobs:
close-issues:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v9
with:
days-before-stale: 21
days-before-close: 7
stale-issue-label: "S-stale"
stale-pr-label: "S-stale"
exempt-issue-labels: "M-prevent-stale"
exempt-pr-labels: "M-prevent-stale"
stale-issue-message: "This issue is stale because it has been open for 21 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
exempt-all-assignees: true
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 59bd910

Please sign in to comment.