From 5d8842a72259ca012cbe1e9cc0943969f029979a Mon Sep 17 00:00:00 2001 From: Djoyke Reijans <115019123+DjoykeAbyah@users.noreply.github.com> Date: Fri, 14 Jun 2024 14:36:14 +0200 Subject: [PATCH] Added Stalebot (#314) * updated readme with baseURL instructions * updated_readme_baseUrl * adjusted readme * added stalebot --- .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 0000000..408ac15 --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,18 @@ +name: Close Stale Issues +on: + schedule: + - cron: '30 8 * * *' + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v9 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + stale-issue-message: 'This issue has been automatically marked as stale due to inactivity and will be closed in 7 days if no further activity occurs.' + close-issue-message: 'This issue was closed due to inactivity. Please reopen if you still encounter this problem or have more information to add.' + days-before-stale: 14 + days-before-close: 7 + stale-issue-label: 'stale' + exempt-issue-labels: 'do not stale'