Close stale issues and PRs #23560
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Close stale issues and PRs # https://github.com/actions/stale | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "*/30 * * * *" # Every 30 mins | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v8 | |
with: | |
# Issues | |
days-before-stale: 180 | |
stale-issue-label: stale | |
days-before-close: 30 | |
stale-issue-message: "This issue has been automatically marked as stale as there has been no activity for 6 months." | |
# Pull requests | |
days-before-pr-stale: 7 | |
days-before-pr-close: 14 | |
exempt-pr-labels: pinned,security,roadmap | |
operations-per-run: 100 |