-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgetRepo.js
More file actions
45 lines (45 loc) · 909 Bytes
/
getRepo.js
File metadata and controls
45 lines (45 loc) · 909 Bytes
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
43
44
45
module.exports = {
name: "getRepo",
ns: "github",
description: "Get Repository",
phrases: {
active: "getting repository {{input.reponame}}"
},
async: true,
ports: {
input: {
github: {
title: "Github",
type: "function",
async: true,
fn: function __GITHUB__(data, source, state, input, $, output) {
var r = function() {
output({
repo: $.create($.github.getRepo($.username, $.reponame))
})
}.call(this);
return {
state: state,
return: r
};
}
},
username: {
title: "Username",
type: "string"
},
reponame: {
title: "Repository name",
type: "string"
}
},
output: {
repo: {
title: "Repository",
type: "function"
}
}
},
state: {},
on: {}
}