Automation modules
Bitbucket modules
Common modules
Compass modules
Confluence modules
Jira modules
Jira Service Management modules
Jira Software modules
Rovo modules
Last updated Jul 11, 2025

Jira Software Feature Flag Information Provider

The devops:featureFlagInfoProvider module allows Forge apps to send feature flag information to Jira and associate it with an issue.

Supplied feature flag information will be presented in the development panel of the issue it is associated with.

Feature flag information is written and deleted via the Jira Software REST API which can be accessed by Forge apps using the requestJira function.

When a user uninstalls an app, all the data that the app sent to Jira is deleted immediately. If the app is reinstalled, this data won't be added back unless the app resends historical information to Jira.

Example

1
2
modules:
  devops:featureFlagInfoProvider:
    - key: my-feature-flag-info-provider
      name:
        value: My Feature Flag Info Provider
      homeUrl: https://www.my-feature-flag.com
      logoUrl: https://www.my-feature-flag.com/logo.svg
      documentationUrl: https://www.my-feature-flag.com/help
      actions:
        createFlag:
          urlTemplate: https://www.my-feature-flag.com/create?issueKey={issue.key}&issueSummary={issue.summary}
        linkFlag:
          urlTemplate: https://www.my-feature-flag.com/link?issueKey={issue.key}         

Properties

PropertyTypeRequiredDescription
keystringYes

A key to identify this module.

nameobjectYes

A human readable name.

name.valuestringYes

Min length: 1

Max length: 255

homeUrlstringYes

URL to the provider's homepage.

Min length: 1

Max length: 255

Regex: ^(http|https):\/\/.*$

logoUrlstringNo

The logo for the provider, will be displayed in an area 16 by 16 pixels.

Min length: 1

Max length: 255

Regex: ^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\\\\?([^#]*))?(#(.*))?

documentationUrlstringNo

Optional URL to documentation about the provider's Jira integration.

Min length: 1

Max length: 255

Regex: ^(http|https):\/\/.*$

actionsActionsNo

Feature flag actions that can be performed by Jira users. Each action is optional (unless indicated otherwise). The absence of an action indicates that the action is not supported by the provider.

Actions

PropertyTypeRequiredDescription
createFlagActionNo

Action for creating a feature flag and linking it with a Jira issue.

The given URL will be used on the Jira issue development panel. The "Create feature flag" button will redirect the user to the URL.

linkFlagActionNo

Action for linking an existing feature flag to a Jira issue.

The given URL will be used on the Jira issue development panel. The "Connect feature flag" button will redirect the user to the URL.

Action

PropertyTypeRequiredDescription
urlTemplatestringYes

Defines the URL template that is used when an action is invoked.

The following context parameters are supported: {issue.key}, {issue.summary}, {issue.flags}

Min length: 1

Max length: 255

Regex: ^(http|https):\/\/.*$

Rate this page: