From f065767560540c1e6a64bbfb2532222d68d4f073 Mon Sep 17 00:00:00 2001 From: Eric Fennis Date: Tue, 4 May 2021 17:42:29 +0200 Subject: [PATCH] Add stale issue workflow --- .github/workflows/close-stale-prs.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/close-stale-prs.yml diff --git a/.github/workflows/close-stale-prs.yml b/.github/workflows/close-stale-prs.yml new file mode 100644 index 0000000..24747ff --- /dev/null +++ b/.github/workflows/close-stale-prs.yml @@ -0,0 +1,18 @@ +name: 'Close stale issues and PR' +on: + schedule: + - cron: '45 1 * * *' + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v3 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + stale-pr-message: 'This PR is stale because it has been open 45 days with no activity. Remove stale label or comment or this will be closed in 5 days.' + close-pr-message: 'This PR was closed because it has been stalled for 5 days with no activity.' + close-pr-label: '🧶 stale' + days-before-stale: 30 + days-before-close: 5 + days-before-pr-close: -1