From db0a60064e6076f248c7db34a13eb5f82b509752 Mon Sep 17 00:00:00 2001 From: Lily Brown Date: Tue, 7 Nov 2023 20:11:48 -0800 Subject: [PATCH] add stale workflow --- .github/workflows/stale.yml | 14 ++++++++++++++ 1 file changed, 14 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 0000000..1b7ac88 --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,14 @@ +name: 'Close stale PRs' +on: + schedule: + - cron: '0 0 * * *' + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v8 + with: + stale-pr-message: 'This RFC has been stale for 30 days. It will be closed in 30 days if no further activity occurs.' + days-before-stale: 30 + days-before-close: 30