Skip to content

Close Stale Pull Requests #1270

Close Stale Pull Requests

Close Stale Pull Requests #1270

Workflow file for this run

name: Close Stale Pull Requests
on:
schedule:
# Runs every day at 00:00 UTC
- cron: '0 0 * * *'
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: -1
days-before-close: -1
days-before-pr-stale: 30
days-before-pr-close: 7
exempt-pr-labels: 's.DoNotMerge'
remove-stale-when-updated: true
stale-pr-label: 'Stale'
stale-pr-message: |
Hi,
We are going to mark this PR as stale because it has been inactive for the past 30 days.
If no further activity occurs within the following 7 days, it will be automatically closed so that others can take up the issue.
If you are still working on this PR, please make a follow-up commit within 7 days and leave a comment to remove the stale label.
Do let us know if you are stuck so that we can help you!'
close-pr-message: |
This PR was closed because it has been marked as stale for 7 days with no activity.
Feel free to reopen this PR if you would like to continue working on it.