You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
タスクが期限に近づく → メール リマインダーを送信するの自動化を有効化し、メールは飛んでいるが、カスタマイズした日程で送信されない
最初のJQL
duedate <= 9d AND statusCategory != done AND assignee != empty
次のJQL
duedate <= endOfDay({{numberOfDaysBeforeDueInclusion}}) AND statusCategory != done AND assignee = {{distinctAssignee}}
9日前に送信したいがされない現状なので設定値が合っているか教えて頂きたい
Hi @倉持 翔
The rule seems to be using a Create Variable action to set the value of {{numberOfDaysBeforeDueInclusion}}
Created Variables are text and not numbers, and so to use that variable in the JQL it must be converted into a number with the function asNumber: https://support.atlassian.com/cloud-automation/docs/jira-smart-values-text-fields/#asNumber
And when comparing to the advanced branch variable, please try using the accountId for comparison if that variable is a user.
duedate <= endOfDay({{numberOfDaysBeforeDueInclusion.asNumber}})
AND statusCategory != Done
AND assignee = {{distinctAssignee.accountId}}
Kind regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.