-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfloom.json
More file actions
64 lines (64 loc) · 2.06 KB
/
Copy pathfloom.json
File metadata and controls
64 lines (64 loc) · 2.06 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "Blast Radius",
"description": "Find all files affected by your changes. One bash script, zero dependencies.",
"manifest_version": "2.0",
"runtime": "python",
"python_dependencies": [],
"secrets_needed": [],
"actions": {
"analyze": {
"label": "Analyze Repo",
"description": "Clone a public git repo and report which files are affected by a branch diff.",
"inputs": [
{
"name": "repo_url",
"label": "Repo URL",
"type": "url",
"required": true,
"description": "Public HTTPS git URL (e.g. https://github.com/owner/repo)."
},
{
"name": "base_branch",
"label": "Base Branch",
"type": "text",
"required": false,
"default": "main",
"description": "Branch to diff against."
},
{
"name": "head_ref",
"label": "Head Ref",
"type": "text",
"required": false,
"default": "HEAD",
"description": "Ref to check out before diffing. Leave as HEAD to use the default branch."
}
],
"outputs": [
{
"name": "summary",
"label": "Summary",
"type": "text"
},
{
"name": "changed",
"label": "Changed Files",
"type": "json"
},
{
"name": "affected",
"label": "Affected Files",
"type": "json"
},
{
"name": "tests",
"label": "Test Files",
"type": "json"
}
]
}
},
"apt_packages": [
"jq"
]
}