Hi all,
We use Jira cloud in such a way that an Issue needs to have a 'Team' (I think this is a custom field) assigned to it in order for it to appear on our team Scrum or Kanban boards.
At the moment we have people creating Issue but forgetting to assign them to a Team, meaning the Issue gets a bit lost.
I've already created an automation such that, when a Child Issue is raised for an Epic, it inherits the parent Epic's Team but...
I'd like to have something run daily that emails Reporters of Issues that don't have a Team assigned to the Issue, so that they can go add one.
Thanks for your help - I'm something of a newbie!
Hi Adam!
This should be doable by an automation with these three steps:
(Didn't have a good field to use, so went with Assignee, but select your preferred field instead.)
Would suggest composing the email along the lines of this:
Here's a rundown of what the smare values will do:
{{issue.reporter.displayName.split(" ").first}} - Returns the reporters displayName (Ana Smith) but splits it to only display first name. (Remove everything after displayName if you wish for it to spell out the entire name).
{{issue.key}} - Returns the issue's key, which is a unique identifier comprised of the project key and the issue's number. For example, PROJ-123
{{issue.summary}} - Returns the issue's summary
See more smart values here.
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.
Glad to hear it worked out! :D
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.