I would like to create reouccring regression stories in different feature with the help of automation
Hello @Nisha Garg
Welcome to the Atlassian community.
Are you working with Jira Cloud or Jira Data Center? When you click the Help button near your avatar and select About Jira, what version information do you see?
Are you familiar with how to create Automation Rules? Do you have access to create Automation Rules?
Automation Rules can be created by Jira Application Administrators. They may also be created by Jira Project/Space Administrators if that permission has been granted to them. If you do not have one of those roles then you probably will not be able to create the Automation Rules yourself.
You can find free, on-demand training about creating Automation Rules in Jira Cloud from the Learning link at the top of all Atlassian Community pages. Here is an example search to help you find the topics/courses:
https://community.atlassian.com/learning/catalog?product=Jira&search=automation
You can refine that search to match your level of knowledge.
There are not courses specific to Automation Rules in Jira Data Center. The courses for Jira Cloud can help you get started, but there are differences in the functionality that is available between Cloud and Data Center.
You can also leverage Atlassian's documentation:
Jira Cloud Automation: https://support.atlassian.com/cloud-automation/docs/jira-cloud-automation/
Jira Data Center Automation: https://confluence.atlassian.com/automation/
To get specific advice from the community we encourage you to try creating rules and then ask us specific questions. It is recommended that you work in a test Jira environment or with a project/space that is not actively used for production work, to avoid negative impact to production data.
If you have questions, when you ask then please provide screen images showing the entire rule you have constructed, the details of the rule execution audit log for when the rule ran, and an explanation of what you wanted/expected to happen versus what you observed actually happening. That information will be necessary for us to help you debug your rules.
Hi Nisha - Welcome to the Atlassian Community!
See if this Article helps you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Nisha,
Assuming you are on Jira Cloud and you have permission to create automation rules, I would start with a simple scheduled rule.
Example approach:
1. Trigger: Scheduled
- Run weekly, monthly, or whatever cadence matches your regression cycle.
2. Optional JQL in the trigger:
- Use this if you only want the rule to run for specific Features.
- For example, filter Features by project, label, component, fix version, or status.
3. Action: Create work item
- Work type: Story
- Summary: Regression testing - {{now.format("MMM yyyy")}}
- Description: Add your standard regression checklist or test scope.
- Parent: set this to the Feature if the Story should be created under a specific Feature.
4. If the same story needs to be created under multiple Features:
- Use a scheduled trigger with JQL to find the Features.
- Then use a branch over the matched work items.
- Inside the branch, create one Story for each Feature and set the Parent to the current Feature.
I would also add a label like `regression-auto` to the created stories. That makes it easier to report on them later and to prevent duplicates if the rule runs again.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Nisha Garg
You could write some automation - use a manual trigger or trigger based on some event. Have you tried that?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Varsha,
Can you please give me steps for it?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Trudy has some great suggestions on how to get started. I would suggest give it a try and then post if you run into any issues.
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.