pull-request-review #1301
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
# Licensed to the Apache Software Foundation (ASF) under one | |
# or more contributor license agreements. See the NOTICE file | |
# distributed with this work for additional information | |
# regarding copyright ownership. The ASF licenses this file | |
# to you under the Apache License, Version 2.0 (the | |
# "License"); you may not use this file except in compliance | |
# with the License. You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
name: pull-request-review | |
on: | |
# Run every day at midnight 00:00 | |
schedule: | |
- cron: "0 0 * * *" | |
permissions: | |
contents: read | |
jobs: | |
stale: | |
permissions: | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-pr-message: > | |
Automated review is marking this PR as stale due to lack of updates in the past four months. | |
This PR will be closed in 15 days if the stale label is not removed. | |
This stale label and automated closure does not indicate a judgement of the PR, just | |
lack of reviewer bandwidth and helps us keep the PR queue more manageable. If you would | |
like this PR re-opened you can do so and a committer can remove the stale label. Or you can | |
open a new PR. Try to help review other PRs to increase PR review bandwidth which in | |
turn helps yours. | |
days-before-stale: 120 | |
days-before-close: 15 |