From 8e806db01ab5f8f78e66b6970181f15eb5fbcc28 Mon Sep 17 00:00:00 2001 From: sebastian haas Date: Mon, 4 Apr 2022 21:12:57 +0200 Subject: [PATCH] add github actions handle stale issues --- .github/workflows/stale.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 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..7832887 --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,27 @@ +# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time. +# +# You can adjust the behavior by modifying this file. +# For more information, see: +# https://github.com/actions/stale +name: Mark stale issues and pull requests + +on: + schedule: + - cron: '20 10 * * *' + +jobs: + stale: + + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + + steps: + - uses: actions/stale@v5 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + stale-issue-message: 'This issue is stale because it has been open 42 days with no activity. Remove stale label or comment or this will be closed in 7 days' + stale-issue-label: 'stale' + days-before-stale: 42 + days-before-close: 7