-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchecks-all.json
More file actions
46 lines (45 loc) · 1.58 KB
/
Copy pathchecks-all.json
File metadata and controls
46 lines (45 loc) · 1.58 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
[
{
"CheckID" : "0",
"CheckName" : "GetAllBlobs",
"CheckDescription" : "Gets all the blob, author , commit details in a table",
"CheckModule" : "Invoke-GitGetAllBlobs",
"CheckOutput" : "blobs"
},
{
"CheckID" : "1",
"CheckName" : "Git Repo Size",
"CheckDescription" : "Determines the checked out size of the repo",
"CheckModule" : "check-GitRepoSize"
},
{
"CheckID" : "2",
"CheckName" : "Git Repo Branch Count",
"CheckDescription" : "Counts the nunber of branches in the git repo",
"CheckModule" : "check-GitBranchCount"
},
{
"CheckID" : "3",
"CheckName" : "Git Repo Largest Blobs",
"CheckDescription" : "Gets the top 10 largest blobs, the sha and size in MB",
"CheckModule" : "check-GitTop10Blobs"
},
{
"CheckID" : "4",
"CheckName" : "Git Repo Activity",
"CheckDescription" : "Determines the most recent commit and branch",
"CheckModule" : "check-GitMostRecentCommit"
} ,
{
"CheckID" : "5",
"CheckName" : "Git DevOps Files",
"CheckDescription" : "Looks through all the blobs to find DevOps files for the major platforms",
"CheckModule" : "check-GitDevOpsFiles"
} ,
{
"CheckID" : "6",
"CheckName" : "Git Branching Strategy",
"CheckDescription" : "Determines the current branching strategy based on exsiting branch names",
"CheckModule" : "check-GitBranches"
}
]