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
In Jira automation, Is it possible to update a date and time field from a date and time found in the description? Ive tried several different ways and the closest I got was the date right but the time will be off
create variable action: {{issue.description.match("(\d{1,4}([.\-/])\d{1,2}([.\-/])\d{1,4})")}}
edit issue action: {{ScheduledDate.toDate("MM/dd/yyyy").plusDays(1).plusHours(1)}}
I tried advanced json:
{
"fields": {
"customfield_10000": "2023-11-02T14:00:00.000+0000"
}
}
this works but gives me the exact date and time entered instead of whats in the description