-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json.example
55 lines (55 loc) · 1.19 KB
/
config.json.example
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
52
53
54
55
{
"job": {
"func": {
"file": "file-name containing the function to be scheduled",
"name": "function-name-to-be-scheduled",
"args": [
'function-argument01',
'function-argument02'
]
},
"schedule": {
"timezone": "Asia/Seoul",
"day_of_week": "tue-sat",
"hour": 21,
"minute": 58,
"end_date": "2020-11-20"
}
},
"checker": {
"commit_keyword":
"keyword-regexp",
"period_day": 6,
"whom": [
{
"committer": "committer-github-username",
"target_commit_count": 5
}
]
},
"github": {
"user": "your-username",
"token": "your-personal-access-tokens",
"repo": {
"your-repo-committer-01",
"your-repo-committer-02"
}
},
"slack": {
"bot_name": "your-bot-name",
"token": "your-bot-token",
"channel_name": "channel-name-to-send-the-message",
"channel_id": "channel-id-to-send-the-message",
"user_id": {
"your-repo-committer-01": "slack-user-id-01",
"your-repo-committer-02": "slack-user-id-02"
},
"msg": {
"format": "This is dev test message {} {}",
"args": [
"args0",
"args1"
]
}
}
}