Hi,
I want to set up a alert whenever a new defect is raised in JIRA in the last 15 min. I will subscribe this alert to run for every 15min, so I should get alert any new defect in the last 15min
I tried with below JQL but it is not working, so can you please help me in achieving this
project = "XXX" AND issuetype = Problem AND status = Open AND created > startOfDay(-15m) And created < Now()
Hello,
I think it should be :
project = "XXX" AND issuetype = Problem AND status = Open AND created > -15m
You are welcome!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.