Mark stale pull requests #72
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
# This workflow warns of PRs that have had no activity for a specified amount of time. | |
# | |
# For more information, see https://github.com/actions/stale | |
name: Mark stale pull requests | |
on: | |
# Run every day at 00:00 UTC | |
schedule: | |
- cron: '0 0 * * *' | |
# Or run on demand | |
workflow_dispatch: | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- uses: actions/stale@v5 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
days-before-pr-stale: 14 | |
days-before-issue-stale: -1 # don't mark issues as stale | |
exempt-draft-pr: true # don't mark draft PRs as stale | |
days-before-close: -1 # don't close stale PRs/issues | |
stale-pr-message: > | |
This PR has not had activity in the past 2 weeks, labeling it as stale. | |
If the PR is waiting for review, notify the dev@lucene.apache.org list. | |
Thank you for your contribution! | |
operations-per-run: 500 # operations budget | |
debug-only: false # turn on to run the action without applying changes |