From 1ccbd3cd83a41f95ecb76c035e64fd742d0b86f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Garc=C3=A9s?= Date: Tue, 11 May 2021 14:30:38 +0200 Subject: [PATCH] Implement actions/stale@v3 to close issues --- .github/workflows/stale.yml | 20 ++++++++++++++++++++ 1 file changed, 20 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..412d648 --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,20 @@ +name: 'Close stale issues' +on: + schedule: + - cron: '0 0 * * *' + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v3 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + stale-issue-label: 'area: stale' + stale-issue-message: | + This issue is stale because it has been open 30 days with no activity. + Our core developers tend to be more verbose on denying. If there is no negative comment, possibly this feature will be accepted. + We are accepting PRs :smiley:. + Comment or this will be closed in 7 days + days-before-stale: 30 + days-before-close: 7