-
Notifications
You must be signed in to change notification settings - Fork 0
/
config_examples.txt
54 lines (41 loc) · 1.53 KB
/
config_examples.txt
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
46
47
48
49
50
51
// config_examples.txt
// Search for issues in the 'nostr-protocol/nostr' repository with a specific label
module.exports = {
searchQuery: "repo:nostr-protocol/nostr label:"good first issue" type:issue"
}
// Search for open issues in the 'nostr-protocol/nostr' repository
module.exports = {
searchQuery: "repo:nostr-protocol/nostr is:open type:issue"
}
// Search for closed issues in the 'nostr-protocol/nostr' repository
module.exports = {
searchQuery: "repo:nostr-protocol/nostr is:closed type:issue"
}
// Search for repositories owned by the 'nostr-protocol' organization with a specific topic
module.exports = {
searchQuery: "org:nostr-protocol topic:nips"
}
// Search for repositories owned by the 'nostr-protocol' organization with more than 500 stars
module.exports = {
searchQuery: "org:nostr-protocol stars:>500"
}
// Search for pull requests in the 'nostr-protocol/nostr' repository
module.exports = {
searchQuery: "repo:nostr-protocol/nostr type:pr"
}
// Search for open pull requests in the 'nostr-protocol/nostr' repository
module.exports = {
searchQuery: "repo:nostr-protocol/nostr is:open type:pr"
}
// Search for closed pull requests in the 'nostr-protocol/nostr' repository
module.exports = {
searchQuery: "repo:nostr-protocol/nostr is:closed type:pr"
}
// Search for repositories with the topic 'nostr' and the language 'javascript'
module.exports = {
searchQuery: "topic:nostr language:javascript"
}
// Search for repositories with the topic 'nostr' and more than 100 forks
module.exports = {
searchQuery: "topic:nostr forks:>100"
}