From 3450e2061b6cc3008e0970c1384d7c8d34fa3d5c Mon Sep 17 00:00:00 2001 From: surchs Date: Wed, 16 Aug 2023 18:16:23 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=84=20synced=20local=20'.github/workfl?= =?UTF-8?q?ows/'=20with=20remote=20'workflows/'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/stale.yml | 17 +++++++++++++++++ 1 file changed, 17 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..0d54763 --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,17 @@ +name: 'Close stale issues and PRs' +on: + schedule: + - cron: '30 1 * * *' + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v8 + with: + stale-issue-message: | + We want to keep our issues up to date and active. This issue hasn't seen any activity in the last 30 days. + We have applied the stale-issue label to indicate that this issue should be reviewed again and then either prioritized or closed. + days-before-stale: 30 + days-before-close: -1 + stale-issue-label: '@ flag:stale'