I have a simple automation that archives ideas every working day at 11:30 PM if the idea has a specific status.
status IN ("Migrated to DEV", "Offer Denied", "Won't Do") and "Idea archived[Dropdown]" is EMPTY
The automation worked fine until an Atlassian release. (I guess)
I can change to:
status IN ("Migrated to DEV", "Offer Denied", "Won't Do") AND "Idea archived" is EMPTY
and the validation does work, but the same error appears in the audit log.
So the Audit log shows:
I find the "Idea archived" field in the custom field section, but I have no clue how to find the correct name to add it to my JQL.
It could be a problem with the fields:
Any solutions?
Thanks!
hi there! sorry for the inconvenience. We would love to help. To reproduce, Atlassian needs access to your instance. To get access to your instance, we need a support ticket to be opened.
Any chance you might open a support ticket?
Thanks!
Amina, JPD PM
To open a support ticket, you can do it directly from Jira Product Discovery, from the place where you can send us feedback (usually on the left sidebar > Give feedback > get help from the support team)
Just paste the following:
"Amina Bouabdallah from the JPD team asked us to create a support ticket to investigate an issue we're facing with Automation rules in JPD. The Slack thread where the issue is being discussed is https://atlassian.slack.com/archives/C05EZGA8XKL/p1745329380278069 . Thank you. "
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Dominik,
My team faced the same issue lately. After working with Atlassian Support, we discovered that this is due to a backend change they're making to migrate the Idea archived field to a single global field, rather than separate project-specific fields. Right now, however, there's both a global field and project fields, so the error you're receiving indicates that automation is unable to determine which one to use.
According to support:
Our team will soon migrate all project-scoped fields to global fields to allow consistent use of automation rules across all projects without needing to identify specific field IDs. However, we don't have an exact timeline on when it will be rolled out to all our users.
In the meantime, your automation rule will need to be updated to reference the project-level field ID specifically. You can verify the global and project field IDs by following these steps:
Let me know if you'd like more clarification!
Jeremiah
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks @Jeremiah Rappley
I was successful with 1 and 2 - but for 3, I don't know where to include this information in my automation.
I found the two Custom Fields (customfield_xxxx1 and customfield_xxxx2)
The automation was working, but the issues are still not in the archive.
I tried with both custom fields using it in the "Then" Advanced Section in the Automation as
{
"fields": {
"customfield_xxxx1": {
"value": "Yes"
}
}
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Dominik
I just tried to archive an Idea with a rule and it worked for me, as you tried with JSON.
When using a JSON expression to update a field, please note:
Ensure the field is not selected from the dropdown list AND in the JSON expression, as only one may be used at a time for a single Edit Work Item action.
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.
Thanks @Bill Sheboy
In the trigger my JSON is:
project = IDEA AND status IN ("Migrated to DEV", "Offer Denied", "Won't Do") AND "Idea archived" is EMPTY
And my Then section is
The JSON finds the right issues and the automation has no error. But the issues are not in the archive.
Any idea what's wrong?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just to align on terminology...
Back to your question, let's confirm you are changing the correct field with that ID, using this how-to article:
yourJiraURL/rest/api/3/issue/yourIdeaKey?expand=names
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Dominik,
Does the JQL query work in the issue search view? Switching from basic search to JQL gives me this query:
status IN ("To Do", Done) AND "idea archived[dropdown]" is empty
If the JQL query is buggy, using the "Idea archived is empty" part as a separate condition in your automation should fix the issue:
Hope this helps!
- Manon
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks @Manon Soubies-Camy
it does not work - but I will follow @Jeremiah Rappley s comment as it seems he had the same problem and has a statement from the Atlassian Support.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.