From 98e57dcacd62caba986ce8cd8a5ad3c280c28cba Mon Sep 17 00:00:00 2001 From: Kael Date: Wed, 14 Feb 2024 16:53:28 +1100 Subject: [PATCH] chore: add stale issues workflow --- .github/workflows/stale.yml | 19 +++++++++++++++++++ 1 file changed, 19 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 00000000000..2b7abfdfc6d --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,19 @@ +name: 'Close stale issues' +on: + workflow_dispatch: + schedule: + - cron: '08 11 * * *' + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v9 + with: + days-before-stale: 180 + days-before-close: 14 + only-labels: 'S: triage' + stale-issue-label: 'S: stale' + stale-pr-label: 'S: stale' + exempt-all-milestones: true + exempt-draft-pr: true