I want to put the
Insights "your sprint scope has changed by" widget
on a dashboard.
Is there a dashboard widget that does this?
You have to use a plugin for this. A very flexible way provides the Script Runner plugin and a script matching your requirements, but this involves some development. There are a lot of examples in the wiki of Script Runner.
Hi,
In https://bitbucket.org/amarkelov/andreymarkelov-atlas-plugins-utils/wiki/Home there is Links Validator. This validator checks that there are no linked issues in setted statuses. Add-On https://marketplace.atlassian.com/plugins/ru.andreymarkelov.atlas.plugins.utils
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Conditioned Workflow Functions for JIRA provides a Conditioned validator that can run a JQL query to determine whether or not to allow the transition to proceed. You could use a query similar to the following. Note that JQL currently doesn't allow you to search by specific link type (see JRA-25640):
issuekey in linkedIssues(%original_key%) and status is not resolved
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.