From 1c71b407f60ea6f40fa4e3bf2960bcd8b0477c74 Mon Sep 17 00:00:00 2001 From: Evan Culver Date: Tue, 8 Feb 2022 12:21:46 -0800 Subject: [PATCH] Add stalebot policy for closing inactive PRs (#11286) * Add stalebot policy for closing inactive issues and PRs Co-authored-by: Daniel Nephin --- .github/workflows/stale.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/stale.yml diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 0000000000..070042d5a0 --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,29 @@ +name: stale +on: + schedule: + - cron: 0 1 * * * + workflow_dispatch: {} +jobs: + stale: + runs-on: ubuntu-latest + permissions: + pull-requests: write + steps: + - uses: actions/stale@v4 + with: + days-before-stale: -1 + days-before-close: -1 + days-before-pr-stale: 60 + days-before-pr-close: 30 + stale-pr-message: This pull request has been automatically flagged + for inactivity because it has not been acted upon in the last 60 + days. It will be closed if no new activity occurs in the next + 30 days. Please feel free to re-open to resurrect the change if + you feel this has happened by mistake. Thank you for your + contributions. + close-pr-message: Closing due to inactivity. If you feel this was a + mistake or you wish to re-open at any time in the future, please + leave a comment and it will be re-surfaced for the maintainers to review. + stale-pr-label: meta/stale + exempt-pr-labels: + - meta/staleproof