-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathact3.json
More file actions
51 lines (51 loc) · 1.49 KB
/
Copy pathact3.json
File metadata and controls
51 lines (51 loc) · 1.49 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
43
44
45
46
47
48
49
50
51
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://json.schemastore.org/act3.json",
"title": "act3 configuration",
"description": "Configuration for act3, a terminal user interface for tracking GitHub Actions workflow runs.\nhttps://github.com/dhth/act3#usage",
"type": "object",
"additionalProperties": true,
"properties": {
"workflows": {
"description": "GitHub Actions workflows to track.",
"type": "array",
"items": {
"$ref": "#/definitions/workflow"
}
}
},
"definitions": {
"workflow": {
"type": "object",
"additionalProperties": true,
"required": ["id", "repo", "name"],
"properties": {
"id": {
"description": "GitHub Actions workflow ID.",
"type": "string",
"minLength": 1
},
"repo": {
"description": "GitHub repository in owner/name form.",
"type": "string",
"pattern": "^[A-Za-z0-9_.-]+/[A-Za-z0-9_.-]+$"
},
"name": {
"description": "Display name for the workflow.",
"type": "string",
"minLength": 1
},
"key": {
"description": "Optional key used to disambiguate workflows with the same name.",
"type": "string",
"minLength": 1
},
"url": {
"description": "Optional HTTPS URL template associated with the workflow.",
"type": "string",
"pattern": "^https://"
}
}
}
}
}