-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
42 lines (42 loc) · 1 KB
/
manifest.json
File metadata and controls
42 lines (42 loc) · 1 KB
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
{
"schema_version": "2.0.0",
"domain": "fanex_id_bot",
"name": "faneX-ID Bot",
"version": "1.0.0",
"min_core_version": "0.1.0",
"description": "GitHub Actions bot for PR management and workflow automation",
"author": "faneX-ID Team",
"category": "automation",
"logo": "https://github.com/faneX-ID/core/raw/main/images/Dashboard.png",
"implementations": {
"python": "bot.py"
},
"exposed_services": [],
"requirements": [
"pygithub>=2.0.0",
"requests>=2.31.0"
],
"config_schema": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"default": true,
"description": "Enable the bot"
},
"admin_users": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "List of admin usernames"
},
"auto_retry": {
"type": "boolean",
"default": false,
"description": "Automatically retry failed workflows"
}
}
}
}