You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+100-9Lines changed: 100 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,8 @@ gitlab me
46
46
- showGroupProjects
47
47
- showGroupMembers
48
48
- issues
49
+
- createIssue
50
+
- editIssue
49
51
- showIssue
50
52
- keys
51
53
- getKey
@@ -80,23 +82,111 @@ gitlab me
80
82
- showUser
81
83
- session
82
84
83
-
Options Usage
85
+
Issues Usage
84
86
=============
85
87
```
86
-
gitlab projectIssues --help
88
+
gitlab issues --help
89
+
Usage: issues [options]
87
90
88
-
Usage: projectIssues [options] <projectId>
89
-
90
-
Get retrive issue of a given project.
91
+
Get all issues created by authenticated user. This function takes pagination parameters page and per_page to restrict the list of issues.
91
92
92
93
Options:
93
94
94
95
-h, --help output usage information
95
-
-e, --per_page [per_page] The limit of list.
96
-
-p, --page [page] The offset of list.
96
+
-s, --state [state] (optional) - Return all issues or just those that are opened or closed
97
+
-l, --labels [labels] (optional) - Comma-separated list of label names
98
+
-o, --order_by [order_by] (optional) - Return requests ordered by created_at or updated_at fields. Default is created_at
99
+
-d, --sort [sort] (optional) - Return requests sorted in asc or desc order. Default is desc
100
+
-e, --per_page [per_page] (optional) - The limit of list.
101
+
-p, --page [page] (optional) - The offset of list.
102
+
103
+
gitlab createIssue --help
104
+
Usage: createIssue [options] <projectId>
105
+
106
+
Creates a new project issue.If the operation is successful, 200 and the newly created issue is returned. If an error occurs, an error number and a message explaining the reason is returned.
107
+
108
+
Options:
109
+
110
+
-h, --help output usage information
111
+
-t, --title <title> (required) - The title of an issue.
112
+
-d, --description [desc] (optional) - The description of an issue.
113
+
-a, --assignee_id [assignee_id] (optional) - The ID of a user to assign issue.
114
+
-m, --milestone_id [milestone_id] (optional) - The ID of a milestone to assign issue.
115
+
-l, --labels [labels] (optional) - Comma-separated label names for an issue.
Updates an existing project issue. This function is also used to mark an issue as closed.If the operation is successful, 200 and the updated issue is returned. If an error occurs, an error number and a message explaining the reason is returned.
151
+
152
+
Options:
153
+
154
+
-h, --help output usage information
155
+
-t, --title <title> (required) - The title of an issue.
156
+
-d, --description [desc] (optional) - The description of an issue.
157
+
-a, --assignee_id [assignee_id] (optional) - The ID of a user to assign issue.
158
+
-m, --milestone_id [milestone_id] (optional) - The ID of a milestone to assign issue.
159
+
-l, --labels [labels] (optional) - Comma-separated label names for an issue.
160
+
-s, --state_event [state_event] (optional) - The state event of an issue ('close' to close issue and 'reopen' to reopen it).
0 commit comments