Skip to content

Commit

Permalink
Introduce stale workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanvodita committed Nov 15, 2023
1 parent 05a336e commit 9cf8804
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# 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:
# Or run on demand
workflow_dispatch:
# Run every day at 00:00 UTC
schedule:
- cron: '0 0 * * *'

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
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!
stale-pr-label: 'no-pr-activity'

0 comments on commit 9cf8804

Please sign in to comment.