diff options
author | Sarah Yasonik <syasonik@gitlab.com> | 2019-08-29 20:27:38 +0000 |
---|---|---|
committer | Mayra Cabrera <mcabrera@gitlab.com> | 2019-08-29 20:27:38 +0000 |
commit | 94720682a1314f769f37835d8e4e3df21650e77c (patch) | |
tree | b820d52d62f13bf2146ca94ced4dc4fd055b03d5 /doc/integration | |
parent | 6712b13393d97b39978decc143091fa7394e4fe3 (diff) | |
download | gitlab-ce-94720682a1314f769f37835d8e4e3df21650e77c.tar.gz |
Add a close issue slack slash command
Adds a slash command in slach for closing issues. See
https://docs.gitlab.com/ee/integration/slash_commands.html
for documentation on the wider feature set.
Diffstat (limited to 'doc/integration')
-rw-r--r-- | doc/integration/slash_commands.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/integration/slash_commands.md b/doc/integration/slash_commands.md index 71ea2e25533..86a66dc4569 100644 --- a/doc/integration/slash_commands.md +++ b/doc/integration/slash_commands.md @@ -15,6 +15,7 @@ Taking the trigger term as `project-name`, the commands are: | `/project-name help` | Shows all available slash commands | | `/project-name issue new <title> <shift+return> <description>` | Creates a new issue with title `<title>` and description `<description>` | | `/project-name issue show <id>` | Shows the issue with id `<id>` | +| `/project-name issue close <id>` | Closes the issue with id `<id>` | | `/project-name issue search <query>` | Shows up to 5 issues matching `<query>` | | `/project-name issue move <id> to <project>` | Moves issue ID `<id>` to `<project>` | | `/project-name deploy <from> to <to>` | Deploy from the `<from>` environment to the `<to>` environment | |