-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcommands.yaml
42 lines (42 loc) · 1.32 KB
/
commands.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
commands:
gitlab_stats:
description: 'View community contribution stats for provided GitLab project repository. Example repository: username/project'
parameters:
- name: repo
optional: false
gitlab_create:
description: 'Creates a GitLab ticket with provided project repository, title, and descriptions. Example repository: username/project'
parameters:
- name: repo
optional: false
- name: title
optional: false
- name: description
optional: false
gitlab_users:
description: 'View list of users in GitLab project repository. Example repository: username/project'
parameters:
- name: repo
optional: false
- name: name
optional: true
gitlab_issues:
description: 'View GitLab project issues. Note: Status may be all, opened, or closed.'
parameters:
- name: repo
optional: false
- name: status
optional: true
gitlab_assign:
description: 'Assign issues to GitLab users and add labels to them. Labels must be comma deliminated!'
parameters:
- name: repo
optional: false
- name: issue_id
optional: false
- name: assignee_ids
optional: false
- name: labels
optional: true
gitlab:
description: 'View gitlab command set documentation'