Skip to content

Commit

Permalink
Added a schedule on needs-reply remove workflow (#3891)
Browse files Browse the repository at this point in the history
* added schedule to need-reply workflow

* added schedule to need-reply workflow

---------

Co-authored-by: Arjun Verma <[email protected]>
  • Loading branch information
2 people authored and lorenzofavaro committed Mar 13, 2024
1 parent 870656f commit 8a89e86
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/need_reply_remove.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Remove needs-reply label

on:
schedule:
- cron: '0 3 * * 1'
issue_comment:
types:
- created
Expand All @@ -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/[email protected]
Expand Down

0 comments on commit 8a89e86

Please sign in to comment.