📚 update README.md

This commit is contained in:
Marc Michalsky 2021-11-12 09:41:54 +01:00
parent d6a45f6bd3
commit 531edd47f9
2 changed files with 3 additions and 3 deletions

View file

@ -43,7 +43,7 @@ actions:
status:
- "In revision"
template: "nudge_ticket"
change_status_to: 4 # optional: change the ticket status to 4 (e.g. "waiting for feedback")
change_status_to: "Waiting for feedback" # optional: change the ticket status to "waiting for feedback"
```
## Usage

View file

@ -1,11 +1,11 @@
{% if issue.assigned_to is defined %}
Hello {{ issue.assigned_to }},
this ticket is assigned to you but wasn't updated for at least {{ days_since_last_update }}. We therefore assume that the problem has been solved in the meantime. If the issue persists, please reopen the ticket and give us a brief update on the situation.
this ticket is assigned to you but wasn't updated for {{ days_since_last_update }}. We therefore assume that the problem has been solved in the meantime. If the issue persists, please reopen the ticket and give us a brief update on the situation.
{% else %}
Hello {{ issue.author }},
this ticket wasn't updated for at least {{ days_since_last_update }}. We therefore assume that the problem has been solved in the meantime. If the issue persists, please reopen the ticket and give us a brief update on the situation.
this ticket wasn't updated for {{ days_since_last_update }}. We therefore assume that the problem has been solved in the meantime. If the issue persists, please reopen the ticket and give us a brief update on the situation.
{% endif %}
Here is the ticket: {{ issue.url }}