Skip to content

Close Stale Issues and PRs #39

Close Stale Issues and PRs

Close Stale Issues and PRs #39

Workflow file for this run

name: Close Stale Issues and PRs
on:
schedule:
- cron: '30 1 * * *'
workflow_dispatch:
permissions: {}
jobs:
stale:
permissions:
issues: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v10.1.0
with:
days-before-stale: 60
days-before-close: 14
stale-issue-label: stale
stale-pr-label: stale
exempt-issue-labels: pinned,security,good first issue
exempt-pr-labels: pinned,security
stale-issue-message: >
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.
stale-pr-message: >
This pull request has been automatically marked as stale because it has not
had recent activity. It will be closed if no further activity occurs. Thank
you for your contributions.
close-issue-message: >
This issue was closed because it has been stalled for 14 days with no
activity.
close-pr-message: >
This pull request was closed because it has been stalled for 14 days with
no activity.
timeout-minutes: 10