Skip to content

Close stale pull requests #1940

Close stale pull requests

Close stale pull requests #1940

Workflow file for this run

name: "Close stale pull requests"
on:
schedule:
- cron: "16 12 * * *"
workflow_dispatch:
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@b5d41d4e1d5dceea10e7104786b73624c18a190f # v10.2.0
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-pr-message: 'This pull request has been inactive for 30 days and will be automatically closed 7 days from now. If this pull request should not be closed, please either (1) fix the AutoMerge issues and re-trigger Registrator, which will automatically update the pull request, or (2) post a comment explaining why you would like this pull request to be manually merged. It would also be helpful if you could post a message in the `#pkg-registration` channel of the JuliaLang Slack (https://julialang.org/slack/), to increase visibility. [noblock]'
close-pr-message: 'This pull request has been inactive for more than 30 days and has automatically been closed. Feel free to register your package or version again once you fix the AutoMerge issues. If you need help, you can ask in the `#pkg-registration` channel of the JuliaLang Slack (https://julialang.org/slack/). [noblock]'
days-before-issue-stale: -1
days-before-pr-stale: 30
days-before-issue-close: -1
days-before-pr-close: 7
delete-branch: true
operations-per-run: 100