Skip to content

Triage stale issues and PRs #38

Triage stale issues and PRs

Triage stale issues and PRs #38

Workflow file for this run

name: 'Triage stale issues and PRs'
on:
schedule:
- cron: '00 1 * * *'
workflow_dispatch:
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
stale-issue-message: "This issue has been marked as stale due to a lack of activity for 60 days. If you believe this issue is still relevant, please provide an update or comment to keep it open. Otherwise, it will be closed in 7 days."
stale-pr-message: "This PR has been marked as stale due to a lack of activity for 60 days. If you believe this pull request is still relevant, please provide an update or comment to keep it open. Otherwise, it will be closed in 7 days."
stale-issue-label: 'stale'
exempt-issue-labels: 'keep-open'
stale-pr-label: 'stale'
exempt-pr-labels: 'keep-open'
days-before-stale: 60
days-before-close: 7
close-issue-message: "This issue has been closed due to a lack of activity since being marked as stale. If you believe this issue is still relevant, please reopen it with an update or comment."
close-pr-message: "This PR has been closed due to a lack of activity since being marked as stale. If you believe this pull request is still relevant, please reopen it with an update or comment."