From f9667cd233aa28f6e7da9d1eb05590d6a9530f7d Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Tue, 9 Nov 2021 15:15:01 -0500 Subject: [PATCH] Close issues with 'needs-information' after 60 days Signed-off-by: Sebastian Malton --- .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 0000000000..4055a26a99 --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,14 @@ +name: Cull Stale Issues +on: + schedule: + - cron: "30 1 * * *" +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@4 + with: + only-issue-labels: "needs-information" + repo-token: "${{ secrets.GITHUB_TOKEN }}" + # -1 here means that PRs will never be marked as stale + days-before-pr-stale: -1