Reminders ========= This responder allows to schedule a reminder for the author or a reviewer to return to a review after a certain period of time (supported units: days and weeks). The command will only work if the mentioned user is an author, a reviewer for the submission or the sender of the message (so editors can set reminders for themselves). Multiple users can be reminded at once using a comma-separated list. ## Listens to ``` @botname remind @username in 2 weeks ``` ``` @botname remind @reviewer in 10 days ``` ``` @botname remind @reviewer1, @reviewer2 in 2 weeks ``` ## Settings key `reminders` ## Params ```eval_rst :reviewers: *Optional.* The HTML-comment value name in the body of the issue to look for reviewers. Default value is **reviewers-list**. :authors: *Optional.* The HTML-comment value name in the body of the issue to look for authors. Default value is **author-handle**. ``` ## Examples **Simple use case:** ```yaml ... responders: reminders: only: editors ... ``` **Custom html fields:** ```yaml ... responders: reminders: only: editors authors: - author1 - author2 ... ``` Now it will allow to set a reminder for all the users listed in the body of the issue in `reviewers-list`, `author1` and `author2` HTML fields. ## In action * **`Scheduling a reminder:`** ![](../images/responders/reminders_1.png "Reminders responder in action: Scheduling a reminder") * **`The reminder:`** ![](../images/responders/reminders_2.png "Reminders responder in action: Reviewer reminder")