debian-mirror-gitlab/doc/user/project/integrations/mattermost_slash_commands.md

156 lines
6.2 KiB
Markdown
Raw Normal View History

2017-08-17 22:00:37 +05:30
# Mattermost slash commands
> Introduced in GitLab 8.14
Mattermost commands give users an extra interface to perform common operations
from the chat environment. This allows one to, for example, create an issue as
soon as the idea was discussed in Mattermost.
2019-09-30 21:07:59 +05:30
GitLab can also send events (e.g., `issue created`) to Mattermost as notifications.
This is the separately configured [Mattermost Notifications Service](mattermost.md).
2017-08-17 22:00:37 +05:30
## Prerequisites
Mattermost 3.4 and up is required.
If you have the Omnibus GitLab package installed, Mattermost is already bundled
in it. All you have to do is configure it. Read more in the
[Omnibus GitLab Mattermost documentation][omnimmdocs].
## Automated Configuration
If Mattermost is installed on the same server as GitLab, the configuration process can be
done for you by GitLab.
Go to the Mattermost Slash Command service on your project and click the 'Add to Mattermost' button.
## Manual Configuration
The configuration consists of two parts. First you need to enable the slash
commands in Mattermost and then enable the service in GitLab.
### Step 1. Enable custom slash commands in Mattermost
This step is only required when using a source install, omnibus installs will be
preconfigured with the right settings.
The first thing to do in Mattermost is to enable custom slash commands from
the administrator console.
1. Log in with an account that has admin privileges and navigate to the system
console.
2019-10-12 21:52:04 +05:30
![Mattermost go to console](img/mattermost_goto_console.png)
2017-08-17 22:00:37 +05:30
1. Click **Custom integrations** and set **Enable Custom Slash Commands**,
**Enable custom integrations to override usernames**, and **Override
custom integrations to override profile picture icons** to true
2019-10-12 21:52:04 +05:30
![Mattermost console](img/mattermost_console_integrations.png)
2017-08-17 22:00:37 +05:30
1. Click **Save** at the bottom to save the changes.
### Step 2. Open the Mattermost slash commands service in GitLab
1. Open a new tab for GitLab, go to your project's
[Integrations page](project_services.md#accessing-the-project-services)
and select the **Mattermost command** service to configure it.
A screen will appear with all the values you need to copy in Mattermost as
described in the next step. Leave the window open.
2019-10-12 21:52:04 +05:30
NOTE: **Note:**
GitLab will propose some values for the Mattermost settings. The only one
required to copy-paste as-is is the **Request URL**, all the others are just
suggestions.
2017-08-17 22:00:37 +05:30
2019-10-12 21:52:04 +05:30
![Mattermost setup instructions](img/mattermost_config_help.png)
2017-08-17 22:00:37 +05:30
1. Proceed to the next step and create a slash command in Mattermost with the
above values.
### Step 3. Create a new custom slash command in Mattermost
Now that you have enabled custom slash commands in Mattermost and opened
the Mattermost slash commands service in GitLab, it's time to copy these values
in a new slash command.
1. Back to Mattermost, under your team page settings, you should see the
**Integrations** option.
2019-10-12 21:52:04 +05:30
![Mattermost team integrations](img/mattermost_team_integrations.png)
2017-08-17 22:00:37 +05:30
1. Go to the **Slash Commands** integration and add a new one by clicking the
**Add Slash Command** button.
2019-10-12 21:52:04 +05:30
![Mattermost add command](img/mattermost_add_slash_command.png)
2017-08-17 22:00:37 +05:30
1. Fill in the options for the custom command as described in
[step 2](#step-2-open-the-mattermost-slash-commands-service-in-gitlab).
2019-10-12 21:52:04 +05:30
NOTE: **Note:**
If you plan on connecting multiple projects, pick a slash command trigger
word that relates to your projects such as `/gitlab-project-name` or even
just `/project-name`. Only use `/gitlab` if you will only connect a single
project to your Mattermost team.
2017-08-17 22:00:37 +05:30
2019-10-12 21:52:04 +05:30
![Mattermost add command configuration](img/mattermost_slash_command_configuration.png)
2017-08-17 22:00:37 +05:30
2018-12-05 23:21:45 +05:30
1. After you set up all the values, copy the token (we will use it below) and
2017-08-17 22:00:37 +05:30
click **Done**.
2019-10-12 21:52:04 +05:30
![Mattermost slash command token](img/mattermost_slash_command_token.png)
2017-08-17 22:00:37 +05:30
### Step 4. Copy the Mattermost token into the Mattermost slash command service
1. In GitLab, paste the Mattermost token you copied in the previous step and
check the **Active** checkbox.
2019-10-12 21:52:04 +05:30
![Mattermost copy token to GitLab](img/mattermost_gitlab_token.png)
2017-08-17 22:00:37 +05:30
1. Click **Save changes** for the changes to take effect.
You are now set to start using slash commands in Mattermost that talk to the
GitLab project you configured.
## Authorizing Mattermost to interact with GitLab
The first time a user will interact with the newly created slash commands,
Mattermost will trigger an authorization process.
![Mattermost bot authorize](img/mattermost_bot_auth.png)
This will connect your Mattermost user with your GitLab user. You can
see all authorized chat accounts in your profile's page under **Chat**.
When the authorization process is complete, you can start interacting with
GitLab using the Mattermost commands.
## Available slash commands
The available slash commands are:
| Command | Description | Example |
| ------- | ----------- | ------- |
2019-12-21 20:55:43 +05:30
| <kbd>/&lt;trigger&gt; issue new &lt;title&gt; <kbd>⇧ Shift</kbd>+<kbd>↵ Enter</kbd> &lt;description&gt;</kbd> | Create a new issue in the project that `<trigger>` is tied to. `<description>` is optional. | `/gitlab issue new We need to change the homepage` |
| <kbd>/&lt;trigger&gt; issue show &lt;issue-number&gt;</kbd> | Show the issue with ID `<issue-number>` from the project that `<trigger>` is tied to. | `/gitlab issue show 42` |
| <kbd>/&lt;trigger&gt; deploy &lt;environment&gt; to &lt;environment&gt;</kbd> | Start the CI job that deploys from one environment to another, for example `staging` to `production`. CI/CD must be [properly configured][ciyaml]. | `/gitlab deploy staging to production` |
2017-08-17 22:00:37 +05:30
To see a list of available commands to interact with GitLab, type the
2019-12-21 20:55:43 +05:30
trigger word followed by <kbd>help</kbd>. Example: `/gitlab help`
2017-08-17 22:00:37 +05:30
![Mattermost bot available commands](img/mattermost_bot_available_commands.png)
## Permissions
The permissions to run the [available commands](#available-slash-commands) derive from
2019-07-07 11:18:12 +05:30
the [permissions you have on the project](../../permissions.md#project-members-permissions).
2017-08-17 22:00:37 +05:30
## Further reading
- [Mattermost slash commands documentation][mmslashdocs]
- [Omnibus GitLab Mattermost][omnimmdocs]
[omnimmdocs]: https://docs.gitlab.com/omnibus/gitlab-mattermost/
[mmslashdocs]: https://docs.mattermost.com/developer/slash-commands.html
[ciyaml]: ../../../ci/yaml/README.md