From 6e3e4d1831a42d625754f3ec71bd0ded7d85be61 Mon Sep 17 00:00:00 2001 From: Merel Theisen <49397448+merelcht@users.noreply.github.com> Date: Thu, 7 Nov 2024 18:09:19 +0100 Subject: [PATCH] Increase close time of info needed tickets to 28 (#4304) Signed-off-by: Merel Theisen --- .github/workflows/no-response.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/no-response.yml b/.github/workflows/no-response.yml index 56c90d6db5..b11c9be736 100644 --- a/.github/workflows/no-response.yml +++ b/.github/workflows/no-response.yml @@ -4,8 +4,8 @@ on: issue_comment: types: [created] schedule: - # Schedule for five minutes after the hour, every hour - - cron: '5 * * * *' + # Run every day at 9am (UTC time) + - cron: '0 9 * * *' jobs: noResponse: @@ -13,8 +13,8 @@ jobs: steps: - uses: lee-dohm/no-response@v0.5.0 with: - token: ${{ github.token }} + token: ${{ secrets.GITHUB_TOKEN }} responseRequiredLabel: "support: needs more info" - daysUntilClose: 14 + daysUntilClose: 28 closeComment: >- This issue has been closed due to lack of information. Feel free to re-open this issue if you're facing a similar problem. Please provide as much information as possible so we can help resolve your issue.