Зміна в полі при закінченні терміну в деяких тасках.

Доброго дня.

Підскажіть будь-ласка. 

Як я можу автоматизувати зміну в полі, при просроченному дедлайні, для задач з певними тегами?

0
4 comments

Hi!

You can create an on-schedule workflow that will run, say, each hour, and check issues' deadlines and tags. If the deadline has already passed, and the issue has some specific tags, then the workflow should edit this issue.

It is possible to create such workflow in the workflow constructor.

0

Дуже дякую.

1

А підскажіть будь-ласка, якою умовою я можу перевірити, що поточна дата більше дати певного поля?

0

If you're using the code editor, then it is 

ctx.issue.fields.DueDate < Date.now();

And if you're using the workflow constructor, then it is

You can also specify the period offset, like "happens 1 day before the rule is triggered".

0

Please sign in to leave a comment.