diff options
author | Paul Martin <paul@paulsputer.com> | 2016-06-18 21:29:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-18 21:29:25 +0100 |
commit | c585040e2ea0f57ef2bfd50c6339fdbe2ec47522 (patch) | |
tree | 8d0b0e4a47dc7891584de8f6b271da8ea0265a86 /src/main/distrib/data | |
parent | bbb65e012c421fb61cd3351ce265c90b5b11a04c (diff) | |
parent | 7f186f18f5ac1616296fd762570013ef2dd0d1da (diff) | |
download | gitblit-c585040e2ea0f57ef2bfd50c6339fdbe2ec47522.tar.gz gitblit-c585040e2ea0f57ef2bfd50c6339fdbe2ec47522.zip |
Merge pull request #1055 from gitblit/1048-TicketReferences
Ticket Reference handling #1048
Diffstat (limited to 'src/main/distrib/data')
-rw-r--r-- | src/main/distrib/data/defaults.properties | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main/distrib/data/defaults.properties b/src/main/distrib/data/defaults.properties index 403b7417..0c7d6cd4 100644 --- a/src/main/distrib/data/defaults.properties +++ b/src/main/distrib/data/defaults.properties @@ -574,6 +574,13 @@ tickets.requireApproval = false # SINCE 1.5.0 tickets.closeOnPushCommitMessageRegex = (?:fixes|closes)[\\s-]+#?(\\d+) +# The case-insensitive regular expression used to identify and link tickets on +# push to the commits based on commit message. In the case of a patchset +# self references are ignored +# +# SINCE 1.8.0 +tickets.linkOnPushCommitMessageRegex = (?:ref|task|issue|bug)?[\\s-]*#(\\d+) + # Specify the location of the Lucene Ticket index # # SINCE 1.4.0 |