From af67db7ae18327c6e2cdcd0eb616d25459cff069 Mon Sep 17 00:00:00 2001 From: Eloston Date: Thu, 4 Nov 2021 22:35:07 +0000 Subject: [PATCH] Add "Close Stale Issues" action --- .github/workflows/stale.yml | 18 ++++++++++++++++++ 1 file changed, 18 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 00000000..48a41caf --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,18 @@ +name: 'Close stale issues and PRs' + +on: + schedule: + - cron: '30 1 * * *' + +permissions: + issues: write + pull-requests: write + +jobs: + stale: + runs-on: ubuntu-latest + steps: + uses: actions@stale@v4 + with: + exempt-all-milestones: true + any-of-labels: 'need info'