1
0
Fork 0
mirror of synced 2024-06-14 16:54:52 +12:00

Stale Workflow Creation

This commit is contained in:
Evan 2024-04-05 14:00:58 -07:00 committed by GitHub
parent 61f04d5340
commit a89a5713ac
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

23
.github/workflows/stale.yml vendored Normal file
View file

@ -0,0 +1,23 @@
name: Mark stale issues
on:
schedule:
- cron: "0 0 * * *" # Midnight Runtime
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: "This issue has been labeled as 'pending-requestor-info', indicating that it requires additional information from the requestor. It has been inactive for 7 days. If no further activity occurs, this issue will be closed in 14 days."
stale-issue-label: "stale"
days-before-stale: 7
days-before-close: 14
remove-stale-when-updated: true
close-issue-message: "This issue has been closed due to inactivity. If you still require assistance, please provide the requested information and reopen the issue."
close-issue-label: "closed-due-to-inactivity"
operations-per-run: 100
only-labels: "pending-requestor-info"