From afc3c094d5178e83978c439f7a2a146b99d1d5a2 Mon Sep 17 00:00:00 2001 From: Nikola Irinchev Date: Thu, 5 Jan 2023 18:02:44 +0100 Subject: [PATCH] Add no-response workflow to close stale issues --- .github/workflows/no-response.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/no-response.yml diff --git a/.github/workflows/no-response.yml b/.github/workflows/no-response.yml new file mode 100644 index 0000000000..cee7fa7548 --- /dev/null +++ b/.github/workflows/no-response.yml @@ -0,0 +1,22 @@ +# NOTE: This is a common file that is overwritten by realm/ci-actions sync service +# and should only be modified in that repository. + +name: No Response + +# Both `issue_comment` and `scheduled` event types are required for this Action +# to work properly. +on: + issue_comment: + types: [created] + schedule: + # Schedule for five minutes after the hour, every hour + - cron: '5 * * * *' + +jobs: + noResponse: + runs-on: ubuntu-latest + steps: + - uses: lee-dohm/no-response@66174372c9c5576aa8a4287e33653f2fdd12d517 + with: + token: ${{ github.token }} + responseRequiredLabel: More-information-needed \ No newline at end of file