Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add stale check #2358

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/maintenance.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Maintenance

on:
workflow_dispatch:
schedule:
- cron: "0 12 * * *" # Runs every day at 12 PM (noon) UTC, which is 4 AM PST
jobs:
lint:
runs-on: ubuntu-22.04
name: Issue Mgmt.
steps:
- name: Prune stale issues
uses: actions/stale@v5
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 90
days-before-close: 14
stale-issue-label: stale
exempt-issue-labels: bug,help wanted
stale-issue-message: |
This issue has been automatically closed because it has been
inactive for a while. Feel free to reopen it if you still have
this problem.
stale-pr-message: |
This pull request has been automatically closed because it has been
inactive for a while. Feel free to reopen it if you still want
to continue with this work.
Loading