From 3b4cf01fcb464322ec3bdf84e8e232015fcae673 Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Sat, 3 Aug 2024 00:10:19 +0100 Subject: [PATCH] Close stale issues without info (#8594) --- .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 00000000000..ef1b86cfa69 --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,17 @@ +name: 'Close stale issues' +on: + schedule: + - cron: '50 5 * * *' + +permissions: + issues: write + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v9 + with: + days-before-stale: 30 + any-of-labels: needs-info + labels-to-remove-when-unstale: needs-info