From 5165f342b71c7dd61caa0de75661f1b4e69552e9 Mon Sep 17 00:00:00 2001 From: sighphyre Date: Wed, 20 Apr 2022 08:18:00 +0200 Subject: [PATCH 1/2] feat: add stalebot config --- .github/stale.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/stale.yml diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 0000000000..e55f872a04 --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,23 @@ +limitPerRun: 30 +daysUntilStale: 30 +daysUntilClose: 7 + +exemptLabels: + - pinned + - security + - "[Status] Maybe Later" + +exemptAssignees: true + +staleLabel: wontfix + +pulls: + markComment: > + This pull request has been automatically marked as stale because it has not had + recent activity. It will be closed if no further activity occurs. Thank you + for your contributions. +issues: + markComment: > + This issue has been automatically marked as stale because it has not had + recent activity. It will be closed if no further activity occurs. Thank you + for your contributions. \ No newline at end of file From 9101884c5eb26554033724ce0cde3c64e34ecfa2 Mon Sep 17 00:00:00 2001 From: sighphyre Date: Wed, 20 Apr 2022 08:30:13 +0200 Subject: [PATCH 2/2] feat: add no response action config --- .github/workflows/flag-no-response.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/flag-no-response.yaml diff --git a/.github/workflows/flag-no-response.yaml b/.github/workflows/flag-no-response.yaml new file mode 100644 index 0000000000..9dfd3592ca --- /dev/null +++ b/.github/workflows/flag-no-response.yaml @@ -0,0 +1,15 @@ +name: No Response + +on: + issue_comment: + types: [created] + schedule: + - cron: '5 * * * *' + +jobs: + noResponse: + runs-on: ubuntu-latest + steps: + - uses: lee-dohm/no-response@v0.5.0 + with: + token: ${{ github.token }} \ No newline at end of file