Do we have option to create quick filter for the selected Kanban boards automatically once component created in project area?
Jira doesn't offer a built-in way to automatically create quick filters when a new component is added: quick filters on Kanban boards must be created manually via Board Settings → Quick Filters, using a JQL expression like component = "Your Component".
A couple of workarounds for the native board:
If you're looking for a more visual, multi-dimensional approach, I built an app called Board Studio for Jira Cloud that lets you use components (and any other Jira field) as swimlane dimensions dynamically — no manual filter setup needed. When you add a component in your projects, it's automatically available as a grouping/filtering axis on the board.
In addition, activating auto-refresh feature will have your Kanban updated as soon as a new component is associated to a work-item part of your filter.
Here's how it would look like in Board Studio app, with a filter as data source input, a Status field horizontal swim lane and grouping by Components Jira field:
With some Components groups expanded to see work items inside (just double-click on a group to expand/collapse it):
With all Components groups expanded:
Disclosure: I'm the developer of Board Studio.
Before diving into complex automation, consider whether a Dynamic Quick Filter meets the need. Instead of creating a new filter for every component, you can create one or two filters that cover the most frequent use cases.
The quick answer is no; Jira doesn't have a built-in "toggle" feature that automatically generates a board filter whenever a new component is added. However, you could address this by using Jira Automation with the Trigger: Component created and Action: Send a Webhook (to the Jira API) to add a new Quick Filter to the specific Kanban Board.
Note: This requires an API Token, replacing URL & {boardId} in the endpoint URL, and "Board Admin" permissions for the user executing the automation. It’s a bit technical, but it’s the only way to achieve true automation for board configuration.
Go to Project Settings > Automation.
Trigger: Component created.
Action: Send web request.
Endpoint: https://{your-domain.atlassian.net}/rest/agile/1.0/board/{boardId}/quickfilter
Payload (JSON):
{
"name": "{{component.name}}",
"description": "Automatically created filter for {{component.name}}",
"jql": "component = '{{component.name}}'"
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
As a reminder, when posting bot / AI-generated content, please ensure you disclose the sources as required by the community guidelines:
https://community.atlassian.com/forums/custom/page/page-id/rules-of-engagement
Regarding your automation rule suggestion, that will not work...and some of the suggestion aspects were likely hallucinated by the source bot / AI-tool:
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.