File tree Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change 20
20
"password": "${BITBUCKET_PASSWORD}"
21
21
}
22
22
},
23
+ {
24
+ "//": "list the project's repos",
25
+ "method": "GET",
26
+ "path": "/projects/:projectKey/repos",
27
+ "origin": "https://${BITBUCKET_API}",
28
+ "auth": {
29
+ "scheme": "basic",
30
+ "username": "${BITBUCKET_USERNAME}",
31
+ "password": "${BITBUCKET_PASSWORD}"
32
+ }
33
+ },
23
34
{
24
35
"//": "list the user's repos",
25
36
"method": "GET",
Original file line number Diff line number Diff line change 177
177
"method": "POST",
178
178
"path": "/api/v4/projects/:project/merge_requests",
179
179
"origin": "https://${GITLAB}"
180
+ },
181
+ {
182
+ "//": "list the user's groups",
183
+ "method": "GET",
184
+ "path": "/api/v4/groups",
185
+ "origin": "https://${GITLAB}"
186
+ },
187
+ {
188
+ "//": "list of projects in a group",
189
+ "method": "GET",
190
+ "path": "/api/v4/groups/:id/projects",
191
+ "origin": "https://${GITLAB}"
180
192
}
181
193
]
182
194
}
You can’t perform that action at this time.
0 commit comments