From 6f31a95fc4cf40f97dd19fe142b2883ab5beb442 Mon Sep 17 00:00:00 2001 From: "Andy (Steve) De George" <67293991+adegeo@users.noreply.github.com> Date: Thu, 2 Jun 2022 09:30:56 -0700 Subject: [PATCH 1/3] Add no response action --- .github/workflows/no-response.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 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 0000000000000..d7b216dfe72ac --- /dev/null +++ b/.github/workflows/no-response.yml @@ -0,0 +1,23 @@ +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@9bb0a4b5e6a45046f00353d5de7d90fb8bd773bb + with: + token: ${{ github.token }} + responseRequiredLabel: needs-more-info + daysUntilClose: 14 + closeComment: > + This issue has been automatically closed due to no response from the original author. + Please feel free to reopen it if you have more information that can help us investigate the issue further. From 06586cb233488c62739971ca5f7789a5366710c0 Mon Sep 17 00:00:00 2001 From: "Andy (Steve) De George" <67293991+adegeo@users.noreply.github.com> Date: Fri, 3 Jun 2022 10:18:23 -0700 Subject: [PATCH 2/3] Update .github/workflows/no-response.yml Co-authored-by: Bill Wagner --- .github/workflows/no-response.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/no-response.yml b/.github/workflows/no-response.yml index d7b216dfe72ac..e6d59896fa820 100644 --- a/.github/workflows/no-response.yml +++ b/.github/workflows/no-response.yml @@ -7,7 +7,7 @@ on: types: [created] schedule: # Schedule for five minutes after the hour, every hour - - cron: '5 * * * *' + - cron: '5 0 * * *' jobs: noResponse: From 2120c64748d8fed8b4cb45fd742745c356a76285 Mon Sep 17 00:00:00 2001 From: "Andy (Steve) De George" <67293991+adegeo@users.noreply.github.com> Date: Mon, 13 Jun 2022 11:56:19 -0700 Subject: [PATCH 3/3] Update .github/workflows/no-response.yml Co-authored-by: Youssef Victor --- .github/workflows/no-response.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/no-response.yml b/.github/workflows/no-response.yml index e6d59896fa820..ac67b22d4be8f 100644 --- a/.github/workflows/no-response.yml +++ b/.github/workflows/no-response.yml @@ -6,7 +6,7 @@ on: issue_comment: types: [created] schedule: - # Schedule for five minutes after the hour, every hour + # Schedule every day at 00:05 - cron: '5 0 * * *' jobs: