Skip to main content
Skip table of contents

Jira Hooks for Bitbucket




What is the Jira Hooks for Bitbucket Plugin?

The Jira Hooks for Bitbucket plugin is a project, which aims the integration of JIRA in Bitbucket. Especially checks regarding the integrity of a branch against the related Jira issue is the target. In several cases we have to check a lot of things regarding the related Jira issue, before we can push into a branch or perform a integration merge. Therefore this project has the target to provide a set of hooks, which checks the consistence of the issue before the action will be performed. To ensure the integrity between branch and the related issue, this plugin provides a Push hook and a Merge Hook. Every hook contains several checks to control your issue and your git workflow.


What can be checked?


PushMerge

Merge Message Pull Request

Bitbucket UILocal commitDescription
Commit needs issue key
AVAILABLE
AVAILABLE
AVAILABLEAVAILABLEAVAILABLEA push or merge can be done only, if at least one commit of a push contains valid issue key reference
All commits needs a issue key
AVAILABLE
AVAILABLE
AVAILABLEAVAILABLEAVAILABLEA push or merge can be done only, if all commits of a push contains a valid issue key reference
All issue keys in a commitAVAILABLEAVAILABLEAVAILABLEAVAILABLEAVAILABLEA push or merge can be done only, if all issue keys in a commit message are valid
Escape issue keysAVAILABLEAVAILABLEAVAILABLEAVAILABLEAVAILABLEEscaped issue keys, will not be evaluated
A branch needs a valid issue keyAVAILABLEAVAILABLEAVAILABLEAVAILABLEN/AA branch can only be created, merged, pushed is the name contains a valid issue key. 
Issue status
AVAILABLE
AVAILABLE
AVAILABLEAVAILABLEAVAILABLEA push or merge can be done only, if the related issue is in the configured status. The status can be configured via regular expression.
Branch naming convention
AVAILABLE
N/A
N/AAVAILABLEN/AThe name of a new branch, will be checked. If a new branch do not match the naming convention, the push will be blocked. The naming convention can be configured via regular expression.
Squash check
AVAILABLE
N/A
N/AN/AN/AA push with more than one commit will be blocked. A push is only allowed, if branches contains exact one commit. If the branch contains more than one commit, the commits need to be squashed.
Merge commit check
AVAILABLE
N/A
N/AN/AN/AA push can be done only, if the push contains no merge commit. This will enforce, that merges will be done via Stash only. If a merge has been done with a different tool (e.g. SourceTree/SmartGit or simple in console) the resulting merge commit will be blocked.
JQL check
AVAILABLE
AVAILABLE
AVAILABLEAVAILABLEAVAILABLEA push or merge can be done only, if the related issue matchs a given JIRA JQL expression.
Rebase check
N/A
AVAILABLE
AVAILABLEN/AN/A

Force a rebase of the source branch before a integration merge can be done. If a rebase is possible and makes sense, the merge is not allowed without rebasing the branch first. In result this check enforces the "The Rebase Option" in the following tutorial: https://www.atlassian.com/git/tutorials/merging-vs-rebasing/conceptual-overview

Attention

It is recommended to use this option on private forks only. The rebase strategy can be used with the force push only, which could have influence to other team members. Use this strategy carefully in a public repository. See also pros and cons in this Atlassian article

https://www.atlassian.com/git/articles/git-team-workflows-merge-or-rebase/


Syntax check
AVAILABLE
AVAILABLE
AVAILABLEAVAILABLEAVAILABLEA push or merge can be done only, if all commits match a specified syntax. This syntax can be configured based on regular expression.
Tag: Semantic VersionAVAILABLEN/AN/AN/AN/AA push of an Tag can be done only, if the tag name matches MAJOR.MINOR.PATCH
Tag: Valid Jira ReleaseAVAILABLEN/AN/AN/A
The tag name must correspond to a valid Jira version. A valid Jira project version is searched for and if no version is found, the push of the tag is rejected.
Tag: Jira Release StatusAVAILABLEN/AN/AN/AN/A

The tag name must not only match a valid Jira version, but the version must also have the correct status. Possible options are:

  • Released: A push of a tag is permitted if the corresponding version has the status "Released".
  • Unreleased: A push of a tag is permitted if the corresponding version has the status "Not released".
  • Archived: A push of a tag is permitted if the corresponding version has the status "Archived".
Tag: JQL matchingAVAILABLEN/AN/AN/AN/AA JQL query is used to check whether a tag can be pushed or not.

Configuration of the hooks

This configuration possibilities are available in the push hook and in the merge hook.

FieldsDescriptionExample
Syntax check

If this option is enabled, the related text field should contain a regular expression, which will define the syntax of the commit messages.

If the option is set, and the following regular expression is given,

^\[([A-Z]+)-(\d+)\](.|\n)+

then each commit message must start with a issue key, which is in brackets. Additionally after the key there must be a further description (e.g. "[TEST-1] further text" will be accepted. Only "[TEST-1]" as commit message will not be accepted. Also "TEST-1 and some further text" will not be accepted, because of the missing brackets. If the commit message do not match, the push or merge is blocked.

Issue status

If this option is enabled, the related text field should contain a regular expression, which will define the valid status of issue key references.

If the option is set, and the following regular expression is given,

Reviewed|Integration Request

then a merge or a push can be done only, if the issue status is "Reviewed" or "Integration Request". (Of course also a more complex regular expression is possible.)

Attention

If you have a international company and if you will support different languages, then you have to respect this in the regular expression. For example the regular expression

To Do|Aufgabe

will support the german and english version of the related status.



JQL check

If this option is enabled, the related text field should contain a valid JIRA JQL expression. A commit will be accepted only, if all issue key references will match the given JQL

If the option is set, and the following JQL is given,

(assignee=benni and fixVersion is not EMPTY)

then a given issue reference will be checked with this JQL. So a merge or push is only possible, if the assignee is the user "benni" and the fix version is set to any version.

(assignee=$currentUser)

You can also use the keyword "$currentUser", which will be replaced with the user wich will execute the merge or push. So the JQL ensure that the merge/push can only be done by the assignee of the issue.


Issue key search settings
  • You can configure where to search for issue keys. Respect issue keys only in branches, only in commits or in branches and commits.
  • In addition you can add an escape character to ignore specific issues 
  • If the format of your issue keys are not the default, you can adjust the regular expression to search issue keys in branches and commit messages

Escape character

The character will be used in in combination with regular expressions. Please think about the character. 

If you want to mention another issue key in your commit message that is related to your change but should not be validated in relation to your work, then you can escape this issue key

TEST-2 my change has a relation to !TEST-1
Issue-key Check

If this options are set, a issue key must exist. Additionally the issue key must reference a valid issue in JIRA.

There are 5 possibilities to check issue-keys


Regarding the issue key in branch name you can explicitly disable some branches (e.g development or master). This exception is only valid for the push hook.

This is a push example, but the behavior regarding the merge hook is the same. (e.g. TEST-10000 does not exist)

ExampleAt least one commitEach commitsAll in commitBranchBranch vs Commit
git checkout -b my-branch/something
git commit -m 'TEST-1 TEST-10000 this is a example'
git push
ACCPETED
ACCPETED
REJECTREJECTACCPETED
git checkout -b my-branch/something
git commit -m 'TEST-1 TEST-10000 This is a example'
git commit -m 'This is a example'
git push


ACCPETED
REJECT
REJECTREJECTACCPETED
git checkout -b my-branch/TEST-1
git commit -m 'This is a example'
git push
REJECTREJECTREJECTACCPETEDACCPETED
git checkout -b my-branch/something
git commit -m 'TEST-1 This is a example'
git commit -m 'This is a example'
git push
ACCPETEDREJECTACCPETEDREJECTACCPETED
git checkout -b my-branch/TEST-2
git commit -m 'TEST-1 This is a example'
git commit -m 'This is a example'
git push
ACCPETEDREJECTACCPETEDACCPETEDREJECT
Application links

You can specify how application links should behave. You can specify where issues will be searched

If selected, only configured project links will be used for validation

If the Bitbucket project is connected to one or more Jira projects via Application Link, then select this option. This will result in searching for matching issues only in the connected projects.

If selected, not all application links needs to be reachable/accessible

By default, all project links that have been configured must also be accessible. If not, then the validation fails. Set this option if a valid application link is sufficient.

By default, the issue keys are searched across all application links and across all possible projects. This is the simplest configuration, but also the one that consumes the most performance.



Common Condition Configuration

This configuration possibilities are available in the push hook and in the merge hook.

FieldsDescriptionExample
Exception

If this option is enabled, the related text field should contain a valid list of user group. If the user which will do the merge/push is in the given group, then the checks will not be evaluated.


This is a push example, but the behavior regarding the merge hook is the same.

If the option is set, and the group admin is configured. Additionally there are several commits which would block a push or merge (e.g. no issue key reference is available), then the behaviour is:


UsecaseUserGroupResult
git commit -m 'this is a example'
git push


If the option "Issue Key Checks" is enabeled the following push will be rejected. But if a administrator will push the changes, all checks will be skipped. The result is that the administrator can push changes also, if the checks would block the push.


Administratoradmin
ACCPETED
git commit -m 'this is a example'
git push


The push will be blocked, because the user Benjamin is not in the user group admin.


Benjaminstash-users
ACCPETED
Skip  Commits

Based on a keyword in a commit message you can skip the all checks for this commit. The keyword can be configured via regular expression. As soon the regular expression match, the commit will not be validated

Example: .*non-functional.*

git merge -m "non-functional: just correct some typos" branch-name
git push


Special Merge Checks and Conditions

On the "Merge check" configuration page, the above common checks/conditions can be activated and configured. Additionally the following merge specific checks can be configured


FieldsDescriptionExample

Pull requests

Via this options you can enable/disable the check based on PR source and/or target branch. If the option for source/target branch is enabled, then the check will be executed only, if the branch name will match the related regular expression. 

Example 1: Do not check hotfix branches

  • Enable the source branch check
  • Add the following regular expression

    ^(?!.*(hotfix\\/.*)).*

    As result all branches beginning with "hotfix/" will not be checked. The target branch doesn't matter.

Example 2: Do only check pull requests going into release branches

  • Enable the target branch check
  • Add the following regular expression

    release/.*

    As result all branches beginning which should be integrated into a branch starting with "release/" will be checked. The source branch doesn't matter. All other PRs will be ignored.


Rebase check

If this option is enabled a merge can only be done only, if in the master are no newer commits. If there are newer commits, which are not in the source branch, the source branch must be rebased on to the top of the target branch. This will create a clean branch-merge picture and will resolve merge conflicts in a early stage.

Commit GraphResult
"master"    ---- A ---- B ---- C
                   \
                    \
 "feature"          FA -- FB -- FC
ACCPETED
git checkout feature
git rebase master
git push -f  
"master"    ---- A ---- B ---- C
                                \
                                 \
"feature"                        FA -- FB -- FC
ACCPETED
Merge check

The merge check strategy can be checked:

In this example, the issue TEST-1 is valid and TEST-1000 is invalid (e.g. TEST-10000 does not exist)

Example 1: Both options are selected 

  • If enabled, all configured checks will be evaluated for the merge message AND
  • If selected, only the merge commit will be checked. All other commits will be ignored 
git checkout -b my-branch/something
git commit -m 'TEST-10000 this is a example'
git push
git checkout master
git merge my-branch/something -m "TEST-1 my commit message"

The merge will be accepted, because only the merge commit message will be evaluated 


Example 2: Only merge message check is enabled

  • If enabled, all configured checks will be evaluated for the merge message
git checkout -b my-branch/something
git commit -m 'TEST-1 this is a example'
git push
git checkout master
git merge my-branch/something -m "TEST-10000 my commit message"

The merge will be rejected, because the issue TEST-10000 does not exist.





Special Push Checks and Conditions

On the "Push check" configuration page, the above common checks/conditions can be activated and configured. Additionally the following push specific checks can be configured


FieldsDescriptionExample
Enabled branches

If this option is enabled, the related text field should contain a regular expression, which will define the branches. If the branch will match the regular expression, the merge/push will be checked. If the branch will not match, the checks will be skipped.

If the option is set, and the following regular expression is given,

BASH
master|develop


then the checks will be validate only if:

  • you will push commits in the master or develop branch
  • you will merge pull requests in the master or develop branch

If you will push or merge change-sets in a branch with a other name, then the checks will not be evaluated and the merge/push is always allowed.


Ignore force pushs

If enabled force pushes will not be checked





Squash checkIf this option is enabled a push can be done only, if the push contains only one commit. If there are more commits, the push will be rejected. After squashing the commits to one commit the push is allowed again.
Commit GraphResult
"feature"    ---- A ---- B ---- C
ACCPETED
"feature"    ---- A
ACCPETED
Merge commit check

If this option is not enabled a push can be done only, if in the push contains no merge commit. This ensures that commits can be done via Bitbucket only. But of course there can be exceptions. Therefore you can allow merge commits, but only if there is a special keyword given.


Example: skip keyword = "merge-skip-fantasy"

Commit GraphOption disabledOption enabled

Skip keyword given

"branch x"    ----- A 
                     \
                      \
"branch y"  --- FA -- merge --> push
ACCPETED
REJECT
ACCPETED
Branch naming convention

If this option is enabled, the related text field should contain a regular expression, which will define the syntax/naming of all new branches. This check will only be executed, if a new branches will be created via a push from a client. The creation of a branch via Bitbucket do not execute this check.


If the option is set, and the following regular expression is given,

branches\\/[bug|feature]+\\/.*

then each new branch needs to match this regular expression.

Branch nameResult
branch/bug/something
ACCPETED
branch/feature/somethingelse
ACCPETED
branch/improvement/something
ACCPETED



Online changes

The online change options allow you to specify whether the hooks should also check the configured changes when the changes are made via the Bitbucket web interface




Tag Checks and Conditions


FieldsDescription
Version Digit Check

If this option is enabled, the tag name is checked against the MAJOR.MINOR.PATCH pattern. According to the semantic version rules, MAJOR, MINOR and PATCH must be non-negative integers without leading zeros (e.g. 1.0.0)

If you want to change the default behaviour, you can do this in the Advanced section.

  • Tag suffix string: By default, all version suffixes are not allowed. This means that you cannot append any further metadata such as "-final" to the version. With this option, you can add suffixes that are based on the semantic version rules. https://semver.org/lang/de/
  • Allowed suffixes: If you do not agree with the standard for suffixes, you can adjust the standard behaviour of the validation with your own regex here
  • Custom Naming Convention: If you don't want to use the standard versioning, you can overwrite it here. If you adjust the standard behaviour of the validation with your own regex, all other validations of the version number check will be deactivated. The tag name will then only be checked against this regex

Valid Jira Version

This option is used to compare the tag name with a Jira project version.

Valid Jira Version Status

This option is used to compare the tag name with more than just the Jira project version. The checked status must also match the status of the Jira version

Project Key

The corresponding project key must be entered here so that the add-on knows in which project to search for valid versions

Jira JQL check

Here you can specify a JQL string that is used to search for issues in Jira. You can also decide in which case a push of the Tag is rejected. Either the JQL query must return a result or must not return a result.

In the JQL string, you can use the keywords $version and $projectKey (e.g. project=$projectKey and fixVersion = $version and resolution is empty). As soon as the JQL returns a result, the push of the tag is rejected. If you use the $version keyword, a valid Jira version must have been identified with the tag. If you use the keyword $projectKey, the projecty key must be configured.

Advanced Jira handling

If you want to change the default behaviour regarding the Jira connection, you can do this in the Advanced section.


Version detection

If the tag name is not the same as the name of the Jira version by default, you can use a RegEx to define how the version is extracted from the Tag name.

Application links:

You can specify how application links should behave. You can specify where issues will be searched

  • If selected, only configured project links will be used for validation: If the Bitbucket project is connected to one or more Jira projects via Application Link, then select this option. This will result in searching for matching issues only in the connected projects.
  • If selected, not all application links needs to be reachable/accessible: By default, all project links that have been configured must also be accessible. If not, then the validation fails. Set this option if a valid application link is sufficient.

By default, the issue keys are searched across all application links and across all possible projects. This is the simplest configuration, but also the one that consumes the most performance.


Exceptions

The following options define the exceptional situations when the tags are not validated. If these conditions are met, creating a tag without validating the rules is allowed.



Local Commit-Check Configuration

The configuration is not needed. It will be used the same configuration as in the push-check configuration. The only thing which is needed is the installation of a local git hook, which will evaluate the commit message via rest-api. (See How to configure a local commit hook? for more information)

How does it have an affect?

How does the merge hooks have an affect?

If one of the configured checks, will be evaluated to false, then a merge will be blocked with a error message.


How does the push hooks have a affect?

If one of the configured checks, will be evaluated to false, then a push will be blocked and the push response prints a detailed error message.


Local and remote check

With our hook it is possible to check the commit message at push time. Faulty commits are rejected and the commits have to be revised. This is annoying because there are maybe several commits affected, which makes changes difficult. So, why not do the same checks at commit time? That's why we introduced a REST API check. This REST-API check works with the same preferences, so the preferences can be managed centrally. By using a normal git-hook, you can perform the same checks locally at commit time and remote at push time.


JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.