Skip to content

.github/workflows/stale.yml #49

.github/workflows/stale.yml

.github/workflows/stale.yml #49

Workflow file for this run

name: 'Close stale issues and PRs'
on:
workflow_dispatch:
schedule:
- cron: "0 */12 * * *"
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
stale-issue-message: 'This issue has been automatically marked as stale because it is has a state of "Awaiting Reply" but no reply has been received within 7 days. It will be closed within 3 days if it is not updated with a reply.'
close-issue-message: 'This issue has been automatically closed because due to lack of response.'
days-before-stale: 7
days-before-close: 3
days-before-pr-close: -1
stale-issue-label: 'Stale :skull:'
only-issue-labels: 'Awaiting Reply :hourglass:'
operations-per-run: 100