@@ -339,23 +339,43 @@ gitReplaceChars: 'ab/'
339
339
340
340
The above configuration replaces all occurences of the characters 'a', 'b' and '/' in the branch title.
341
341
342
+ # # Automatically link pull request with issue
343
+
344
+ This app can automatically link a pull request to the issue for which the issue
345
+ branch (of the pull request) was created. You can enable this feature with :
346
+
347
+ ` ` ` yaml
348
+ autoLinkIssue: true
349
+ ` ` `
350
+
351
+ Be aware that the app needs to be able to find the issue number in the branch
352
+ name, otherwise this feature will not work. This feature only works if one of
353
+ the following is true for your app configuration :
354
+
355
+ - You use the default `branchName` setting
356
+ - Your `branchName` setting is `tiny`, `short` or `full`
357
+ - Your branch name starts with the issue number
358
+ - Your branch name contains the string `issue-` (case insensitive) followed by
359
+ the issue number, for example : ` Project-A-Issue-123-Rewrite_in_Clojure`
360
+
342
361
# # Automatically close issues after a pull request merge
343
362
344
- This app can close issues automatically for you when a pull request for an issue branch is merged. You can enable this
345
- feature with :
363
+ This app can close issues automatically for you when a pull request for an
364
+ issue branch is merged. You can enable this feature with :
346
365
347
366
` ` ` yaml
348
367
autoCloseIssue: true
349
368
` ` `
350
369
351
- Be aware that the app needs to be able to find the issue number in the branch name, otherwise this feature will not
352
- work. This feature only works if one of the following is true for your app configuration :
370
+ Be aware that the app needs to be able to find the issue number in the branch
371
+ name, otherwise this feature will not work. This feature only works if one of
372
+ the following is true for your app configuration :
353
373
354
374
- You use the default `branchName` setting
355
375
- Your `branchName` setting is `tiny`, `short` or `full`
356
376
- Your branch name starts with the issue number
357
- - Your branch name contains the string `issue-` (case insensitive) followed by the issue number, for
358
- example : ` Project-A-Issue-123-Rewrite_in_Clojure`
377
+ - Your branch name contains the string `issue-` (case insensitive) followed by
378
+ the issue number, for example : ` Project-A-Issue-123-Rewrite_in_Clojure`
359
379
360
380
# # Default source branch
361
381
0 commit comments