How do I Automate story created at the backog and it stays without vanishing or assigning the board filter component OR
When I create stories at the backlog if vanishes because my baord filter via component.How can I automate it to let stories created at the back log stays on the board in which backlog is being created eventhough it filters via component
Hi @AnthonioD
From what you are describing, I hypothesize you are using a company-managed space / project, and thus set the board / backlog filter. Is that correct?
If so, the filter determines what is displayed. When creating a work item which does not match the filter, it will not appear in the backlog or board.
Kind regards,
Bill
For just the component value, yes that may be possible. If you know the Component value, that could be added with a rule using the Work Item Created trigger and a Edit Work Item action.
For any other filter needs, it is likely not possible for a non-trivial filter. One would need to:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What have you tried thus far to solve this?
If you have a rule that is not working as expected, please post the following for context so the community can help:
If you have not started a rule yet, I encourage you to try to do so. Successfully using automation rules requires learning and experimentation. To help you get started, and referencing my earlier suggestion, please see:
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.
That is a good start, and I have a couple of suggested improvements...
What is the filter for your board / backlog? If you look at that filter, you will find which Component value to select in the rule.
Next, the Work Item Created trigger can have timing problems and so the rule can start so quickly some data may be missing. The fix for that is to add the Re-fetch Work Item Data action immediately after the trigger. This will slow the rule slightly, reloading the data before the steps proceed.
Putting those together, you would get:
Please note well: this rule will replace the Components value. If instead you want to add to any existing ones in the work item, the rule would use a JSON expression instead of selecting the field from the dropdown list.
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.
I believe the behavior you describe is a by-design, Jira feature where it interprets the Component value based on the filter: it helps keep your work where it was created.
It appears your scenario is something like this:
GIVEN two (or more) Jira boards filtered by component-A, component-B, etc.
AND I am viewing the backlog for component-A board
WHEN I create a work item and want it to go to the other board
THEN *the magic happens here* it goes to the correct board
I do not believe there is a way to disable the built-in Jira behavior.
When you want to select the specific destination board, your two options are:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
GIVEN two (or more) Jira boards filtered by component-A, component-B, etc.
AND I am viewing the backlog for component-A board
WHEN I create a work item and want it to go to the other board
THEN *the magic happens here* it goes to the correct board
Correct Logic or intent is this instead(you go the first two rgiht )
GIVEN two (or more) Jira boards filtered by component-A, component-B, etc.
AND I am viewing the backlog for component-A board
WHEN I create a work item on Component -A Board)
THEN *the magic happens here* on Component -A board or Backlog(correct baord)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Are you indicating when creating a work item on backlog for Component-A using the +Create at the bottom of the view it does not get added to that backlog?
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.