chore: update github actions/issues workflows

This commit is contained in:
Aarnav Tale
2026-03-01 13:45:36 -05:00
parent 0cff389051
commit df11aefd0c
10 changed files with 206 additions and 86 deletions
+29
View File
@@ -0,0 +1,29 @@
name: Stale
on:
schedule:
- cron: "30 1 * * *"
workflow_dispatch:
permissions:
actions: write
issues: write
jobs:
stale:
name: Close stale issues
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v10
with:
stale-issue-label: Stale
only-labels: "Needs Info"
days-before-stale: 30
stale-issue-message: >
This issue has been waiting for information for 30 days.
It will be closed in 7 days if there is no further activity.
Feel free to reopen if you can provide the requested details.
close-issue-message: >
Closed due to inactivity. Feel free to reopen with the
requested information.
days-before-pr-stale: -1
days-before-pr-close: -1