Template:Gitlab-mention
Appearance
Template documentation
Examples:
{{Gitlab-mention|GitLab username}}â GitLab username
{{Gitlab-mention|GitLab username|file_regexp=<nowiki>\.(txt|php)$</nowiki>}}â GitLab username (only commits where at least one of the changed files match /\.(txt|php)$/)
Note: Don't forget to use <nowiki> tags for the file_regexpparameter, if you want to have template-specific characters in the regexp, such as|
{{Gitlab-mention|GitLab username|file_regexp=<nowiki>^includes/.+\.php$</nowiki>|match_all_files}}â GitLab username (only commits where all of the changed files match /^includes/.+\.php$/)
{{Gitlab-mention|GitLab username|file_regexp=<nowiki>^includes/.+\.php$</nowiki>||only_match_new_files}}â GitLab username (only commits where at least one of the new files match /^includes/.+\.php$/)
Add this template to [[Git/Reviewers]] to be automatically added as a reviewer on GitLab changes that match certain criteria
| Parameter | Description | Type | Status | |
|---|---|---|---|---|
| GitLab username | 1 | Your username on gitlab.wikimedia.org | String | required |
| 2 | 2 | If you set this to match_all_files, the file regexp must match all changed files in the commit, not just one of them | String | optional |
| 3 | 3 | Set this to only_match_new_files to make the file regexp only look at new files created by the commit | Unknown | optional |
| File path regexp | file_regexp | Only subscribe to commits where at least one of the files matches this regexp. Don't forget to wrap this in <nowiki> tags if you use | or other special characters
| String | suggested |