From 8a89e86da4759ea7452728f7ba4426acc1e95f2d Mon Sep 17 00:00:00 2001 From: Santhosh <52504160+santacodes@users.noreply.github.com> Date: Wed, 13 Mar 2024 23:27:50 +0530 Subject: [PATCH] Added a schedule on `needs-reply remove` workflow (#3891) * added schedule to need-reply workflow * added schedule to need-reply workflow --------- Co-authored-by: Arjun Verma --- .github/workflows/need_reply_remove.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/need_reply_remove.yml b/.github/workflows/need_reply_remove.yml index 959891aec8..71fe2151d7 100644 --- a/.github/workflows/need_reply_remove.yml +++ b/.github/workflows/need_reply_remove.yml @@ -1,6 +1,8 @@ name: Remove needs-reply label on: + schedule: + - cron: '0 3 * * 1' issue_comment: types: - created @@ -11,7 +13,8 @@ jobs: if: | github.event.comment.author_association != 'OWNER' && github.event.comment.author_association != 'COLLABORATOR' && - github.repository_owner == 'pybamm-team' + github.repository_owner == 'pybamm-team' && + github.event_name != 'pull_request' steps: - name: Remove needs-reply label uses: octokit/request-action@v2.x