Hi,
I know the difference between the two but I think 5% of the users use a different text for these two fields. I always give for both the same name. Can I remove from the screen the Epic Summary? When I clone an Epic I find really annoying to change the two fields and I forget to change the summary.
Did you try to remove it?
Thank you and beste regards.
Mari
In JIRA Cloud you can now use Automation to ensure that the Epic Name and Epic Summary always match, making them effectively the same field.
Project Settings -> Automation -> Create new Rule
Event: When: Value changes for Summary
Condition: Issue Type = Epic
Action: Set Epic Name to copy from Summary
Then copy that rule and switch the fields, so that if Epic Name changes, the value is copied to Summary. It's working for me so far.
Hi Aaron,
may I ask you if your Epic Name field was locked by Jira?
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In Jira Cloud company managed projects, both the Epic Name and Summary fields are required:
In Jira Cloud team managed projects, this issue of having to populate an additional Epic Name field does not exist. So this Epic Name <-> Summary issue only currently exists for Jira Cloud company managed projects.
We always keep the Epic Name the same as the Summary name, so all of my users have to input the same text twice when they are creating an Epic.
The only solutions I could figure out to address this are:
1 - create your own web-based Epic create screen, and then push that data to Jira via API to create the Epic.
Negative: requires deeper technical skills to program, does not leverage the Jira system user interface, separate system that has to be updated for changes, create screen inside Jira still requires user to enter the same text twice in both the Epic Name and Summary fields
2 - create a separate issue type called "Epic Create". Make the create screen the same as the regular Epic issue create screen, just do not include Epic Name on it. User clicks the Jira blue Create button, selects the issue type "Epic Create", fills out the screen as usual but only has to fill out the Summary field, and Saves. A Jira automation is triggered whenever an "Epic Create" issue type is created. The automation (1) clones the "Epic Create" into an "Epic" and puts {{issue.summary}} into both the Summary and the Epic Name fields and then (2) deletes the "Epic Create" issue.
"Epic Create" screen:
Automation:
This had to be done to get around having to enter the same text into both the Epic Name and Summary fields with the current functionality / requirements / environment in cloud.
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.
Hi Mari,
You can remove the Epic Summary field from your screens, just make sure is not marked as mandatory.
Also remember that the Epic Name field is the one that will allow you to locate your Epic on related issues when you look for it on the Epic Link field.
Please let me know if it helps :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Jesusoros,
we tried to proceed as you suggested.
we removed the "required" flag for "Epic Name" in the field configuration.
Initially it worked, BUT: whenever the server is rebooted the "required" flag is set again.
Do you have any suggestion why JIRA "resets" the field configuration automatically ?
thanks in advance
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello dr.ostman,
The one I suggested to have the "required" flag removed was Epic Summary.
Epic Name is mandatory by default.
Please let me know what are you trying to accomplish.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi jesusoros,
i thought the same is valid for EPIC NAME.
The problem we try to solve is to keep EPIC Name and Summary in sync automatically and remove one of them from the create transition.
For copying we use "JSU Copy field" in the post function of the "create transition". (copy Summary to EPIC NAME).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi jesusoros,
i thought the same is valid for EPIC NAME.
The problem we try to solve is to keep EPIC Name and Summary in sync automatically and remove one of them from the create transition.
For copying we use "JSU Copy field" in the post function of the "create transition". (copy Summary to EPIC NAME).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Make Epic Name = Summary Automatically. can you suggest on this? Dr_ostman.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
def epicName = getFieldByName("Epic Name")
epicName.setFormValue(getFieldById(getFieldChanged()).getValue())
-Scriptrunner Behavior
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.