@soos-io/soos-scm-audit 0.0.1 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +52 -36
- package/bin/index.js +24 -7
- package/package.json +44 -44
- package/bin/enums.d.ts +0 -7
- package/bin/enums.js +0 -11
- package/bin/services/GitHubService.d.ts +0 -92
- package/bin/services/GitHubService.js +0 -99
- package/soos_contributor_audit.json +0 -264
package/README.md
CHANGED
|
@@ -1,36 +1,52 @@
|
|
|
1
|
-
# [SOOS](https://soos.io/)
|
|
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
|
-
|
|
|
1
|
+
# [SOOS](https://soos.io/)
|
|
2
|
+
The SOOS SCM Audit script should be used to determine the number of contributing developers in your organization.
|
|
3
|
+
|
|
4
|
+
## Requirements
|
|
5
|
+
- [npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm)
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
You may choose to install the package globally or locally, if you are unsure, you can find out more about installing globally on [npm](https://docs.npmjs.com/downloading-and-installing-packages-globally).
|
|
9
|
+
|
|
10
|
+
### Globally
|
|
11
|
+
run `npm i -g @soos-io/soos-scm-audit@latest`
|
|
12
|
+
|
|
13
|
+
### Locally
|
|
14
|
+
run `npm install --prefix ./soos @soos-io/soos-scm-audit`
|
|
15
|
+
|
|
16
|
+
## Configure and Run the Script
|
|
17
|
+
NOTE: you can find values for the `--apiKey` and `--clientId` at [app.soos.io](https://app.soos.io/integrate).
|
|
18
|
+
|
|
19
|
+
### For GitHub
|
|
20
|
+
1. Generate a GitHub Public Access Token (PAT) for your organization and ensure that it has the full `repo` permission set.
|
|
21
|
+

|
|
22
|
+
|
|
23
|
+
2. Plug in the values for `--apiKey`, `--clientId`, `--secret`, and `--organizationName` and run the script.
|
|
24
|
+
|
|
25
|
+
#### When Installed Globally:
|
|
26
|
+
`soos-scm-audit --apiKey=<API_KEY> --clientId=<CLIENT_ID> --scmType=GitHub --secret=<GITHUB_PAT> --organizationName="<GITHUB_ORG_NAME>"`
|
|
27
|
+
|
|
28
|
+
#### When Installed Locally:
|
|
29
|
+
`node ./soos/node_modules/@soos-io/soos-scm-audit/bin/index.js --apiKey=<API_KEY> --clientId=<CLIENT_ID> --scmType=GitHub --secret=<GITHUB_PAT> --organizationName="<GITHUB_ORG_NAME>"`
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
## Parameters
|
|
33
|
+
|
|
34
|
+
| General Parameters | Default | Description |
|
|
35
|
+
|------------------------|---------|----------------------------------------------------------|
|
|
36
|
+
| --apiKey | | SOOS API Key - get yours from SOOS Integration. Uses SOOS_API_KEY env value if present. |
|
|
37
|
+
| --clientId | | SOOS Client ID - get yours from SOOS Integration. Uses SOOS_API_CLIENT env value if present. |
|
|
38
|
+
| --logLevel | | Minimum level to show logs: DEBUG, INFO, WARN, FAIL, ERROR. |
|
|
39
|
+
| --saveResults | | Save results to file. |
|
|
40
|
+
| --scmType | | Scm Type to use for the audit. Options: GitHub, BitBucketCloud |
|
|
41
|
+
| --verbose | false | Enable verbose logging. |
|
|
42
|
+
|
|
43
|
+
| BitBucket Cloud Parameters | Default | Description |
|
|
44
|
+
|----------------------------|---------|----------------------------------------------------------|
|
|
45
|
+
| --username | | Username where the App password was generated for BitBucketCloud. |
|
|
46
|
+
| --secret | | Secret to use for API calls. It should be a App Password |
|
|
47
|
+
| --workspace | | Workspace name to run audit for BitBucketCloud. |
|
|
48
|
+
|
|
49
|
+
| GitHub Parameters | Default | Description |
|
|
50
|
+
|----------------------------|---------|----------------------------------------------------------|
|
|
51
|
+
| --organizationName | | Organization name to run audit for GitHub. |
|
|
52
|
+
| --secret | | Secret to use for API calls. It should be a GPAT |
|
package/bin/index.js
CHANGED
|
@@ -14,18 +14,35 @@ class SOOSSCMAudit {
|
|
|
14
14
|
}
|
|
15
15
|
static parseArgs() {
|
|
16
16
|
const contributorAuditArgumentParser = ContributorAuditArgumentParser_1.default.create();
|
|
17
|
-
contributorAuditArgumentParser.addBaseContributorArguments();
|
|
18
17
|
api_client_1.soosLogger.info("Parsing arguments");
|
|
19
18
|
return contributorAuditArgumentParser.parseArguments();
|
|
20
19
|
}
|
|
21
20
|
async runAudit() {
|
|
22
21
|
const contributingDeveloperService = ContributorAuditService_1.default.create(this.args.apiKey, this.args.apiURL, this.args.scmType);
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
22
|
+
let auditParams;
|
|
23
|
+
if (this.args.scmType === api_client_1.ScmType.GitHub) {
|
|
24
|
+
const githubArgs = this.args;
|
|
25
|
+
auditParams = {
|
|
26
|
+
days: this.args.days,
|
|
27
|
+
scriptVersion: package_json_1.version,
|
|
28
|
+
organizationName: githubArgs.organizationName,
|
|
29
|
+
secret: this.args.secret,
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
else if (this.args.scmType === api_client_1.ScmType.BitbucketCloud) {
|
|
33
|
+
const bitbucketCloudArgs = this.args;
|
|
34
|
+
auditParams = {
|
|
35
|
+
days: this.args.days,
|
|
36
|
+
scriptVersion: package_json_1.version,
|
|
37
|
+
secret: this.args.secret,
|
|
38
|
+
username: bitbucketCloudArgs.username,
|
|
39
|
+
workspace: bitbucketCloudArgs.workspace,
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
else {
|
|
43
|
+
api_client_1.soosLogger.error(`Unsupported SCM type: ${this.args.scmType}`);
|
|
44
|
+
(0, process_1.exit)(1);
|
|
45
|
+
}
|
|
29
46
|
api_client_1.soosLogger.info(`Running Contributing Developer audit for ${this.args.scmType}`);
|
|
30
47
|
const contributingDevelopers = await contributingDeveloperService.audit(auditParams);
|
|
31
48
|
await contributingDeveloperService.uploadContributorAudits(this.args.clientId, contributingDevelopers);
|
package/package.json
CHANGED
|
@@ -1,44 +1,44 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@soos-io/soos-scm-audit",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "SOOS SCM Audit CLI",
|
|
5
|
-
"main": "bin/index.js",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"setup:install": "npm install",
|
|
8
|
-
"setup:clean-install": "npm ci",
|
|
9
|
-
"setup:update": "npx npm-check -u",
|
|
10
|
-
"setup:clean": "npx rimraf node_modules && npx rimraf package-lock.json",
|
|
11
|
-
"build": "tsc",
|
|
12
|
-
"build:clean": "npx rimraf build",
|
|
13
|
-
"format": "prettier ./src --check",
|
|
14
|
-
"format:fix": "prettier ./src --write",
|
|
15
|
-
"typecheck": "tsc --noEmit",
|
|
16
|
-
"check": "npm run format && npm run typecheck && npm outdated",
|
|
17
|
-
"patch-api-client": "npm version patch --no-git-tag-version && npm run setup:clean && npm install @soos-io/api-client@latest --save-exact && npm install && npm run check",
|
|
18
|
-
"link:local": "npm link @soos-io/api-client && npm run build && npm link"
|
|
19
|
-
},
|
|
20
|
-
"repository": {
|
|
21
|
-
"type": "git",
|
|
22
|
-
"url": "git+https://github.com/soos-io/soos-scm-audit.git"
|
|
23
|
-
},
|
|
24
|
-
"author": "SOOS",
|
|
25
|
-
"license": "MIT",
|
|
26
|
-
"bugs": {
|
|
27
|
-
"url": "https://github.com/soos-io/soos-scm-audit/issues"
|
|
28
|
-
},
|
|
29
|
-
"homepage": "https://github.com/soos-io/soos-scm-audit#readme",
|
|
30
|
-
"dependencies": {
|
|
31
|
-
"@soos-io/api-client": "0.2.
|
|
32
|
-
"argparse": "^2.0.1",
|
|
33
|
-
"tslib": "^2.6.2"
|
|
34
|
-
},
|
|
35
|
-
"devDependencies": {
|
|
36
|
-
"@types/argparse": "^2.0.11",
|
|
37
|
-
"@types/node": "^20.11.
|
|
38
|
-
"prettier": "^3.2.
|
|
39
|
-
"typescript": "^5.3.3"
|
|
40
|
-
},
|
|
41
|
-
"bin": {
|
|
42
|
-
"soos-scm-audit": "bin/index.js"
|
|
43
|
-
}
|
|
44
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@soos-io/soos-scm-audit",
|
|
3
|
+
"version": "0.0.3",
|
|
4
|
+
"description": "SOOS SCM Audit CLI",
|
|
5
|
+
"main": "bin/index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"setup:install": "npm install",
|
|
8
|
+
"setup:clean-install": "npm ci",
|
|
9
|
+
"setup:update": "npx npm-check -u",
|
|
10
|
+
"setup:clean": "npx rimraf node_modules && npx rimraf package-lock.json",
|
|
11
|
+
"build": "tsc",
|
|
12
|
+
"build:clean": "npx rimraf build",
|
|
13
|
+
"format": "prettier ./src --check",
|
|
14
|
+
"format:fix": "prettier ./src --write",
|
|
15
|
+
"typecheck": "tsc --noEmit",
|
|
16
|
+
"check": "npm run format && npm run typecheck && npm outdated",
|
|
17
|
+
"patch-api-client": "npm version patch --no-git-tag-version && npm run setup:clean && npm install @soos-io/api-client@latest --save-exact && npm install && npm run check",
|
|
18
|
+
"link:local": "npm link @soos-io/api-client && npm run build && npm link"
|
|
19
|
+
},
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/soos-io/soos-scm-audit.git"
|
|
23
|
+
},
|
|
24
|
+
"author": "SOOS",
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"bugs": {
|
|
27
|
+
"url": "https://github.com/soos-io/soos-scm-audit/issues"
|
|
28
|
+
},
|
|
29
|
+
"homepage": "https://github.com/soos-io/soos-scm-audit#readme",
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@soos-io/api-client": "0.2.42",
|
|
32
|
+
"argparse": "^2.0.1",
|
|
33
|
+
"tslib": "^2.6.2"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@types/argparse": "^2.0.11",
|
|
37
|
+
"@types/node": "^20.11.23",
|
|
38
|
+
"prettier": "^3.2.5",
|
|
39
|
+
"typescript": "^5.3.3"
|
|
40
|
+
},
|
|
41
|
+
"bin": {
|
|
42
|
+
"soos-scm-audit": "bin/index.js"
|
|
43
|
+
}
|
|
44
|
+
}
|
package/bin/enums.d.ts
DELETED
package/bin/enums.js
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SCMSystem = void 0;
|
|
4
|
-
var SCMSystem;
|
|
5
|
-
(function (SCMSystem) {
|
|
6
|
-
SCMSystem["GitHub"] = "GitHub";
|
|
7
|
-
SCMSystem["GitLab"] = "GitLab";
|
|
8
|
-
SCMSystem["Bitbucket"] = "Bitbucket";
|
|
9
|
-
SCMSystem["AzureDevOps"] = "AzureDevOps";
|
|
10
|
-
SCMSystem["Other"] = "Other";
|
|
11
|
-
})(SCMSystem || (exports.SCMSystem = SCMSystem = {}));
|
|
@@ -1,92 +0,0 @@
|
|
|
1
|
-
export interface GitHubOrganization {
|
|
2
|
-
login: string;
|
|
3
|
-
id: number;
|
|
4
|
-
node_id: string;
|
|
5
|
-
url: string;
|
|
6
|
-
repos_url: string;
|
|
7
|
-
events_url: string;
|
|
8
|
-
hooks_url: string;
|
|
9
|
-
issues_url: string;
|
|
10
|
-
members_url: string;
|
|
11
|
-
public_members_url: string;
|
|
12
|
-
avatar_url: string;
|
|
13
|
-
description: string | null;
|
|
14
|
-
}
|
|
15
|
-
export interface GitHubRepository {
|
|
16
|
-
id: number;
|
|
17
|
-
node_id: string;
|
|
18
|
-
name: string;
|
|
19
|
-
full_name: string;
|
|
20
|
-
private: boolean;
|
|
21
|
-
owner: GitHubOrganization;
|
|
22
|
-
html_url: string;
|
|
23
|
-
description: string | null;
|
|
24
|
-
fork: boolean;
|
|
25
|
-
url: string;
|
|
26
|
-
forks_url: string;
|
|
27
|
-
keys_url: string;
|
|
28
|
-
collaborators_url: string;
|
|
29
|
-
teams_url: string;
|
|
30
|
-
hooks_url: string;
|
|
31
|
-
issue_events_url: string;
|
|
32
|
-
events_url: string;
|
|
33
|
-
assignees_url: string;
|
|
34
|
-
branches_url: string;
|
|
35
|
-
tags_url: string;
|
|
36
|
-
blobs_url: string;
|
|
37
|
-
git_tags_url: string;
|
|
38
|
-
git_refs_url: string;
|
|
39
|
-
trees_url: string;
|
|
40
|
-
statuses_url: string;
|
|
41
|
-
languages_url: string;
|
|
42
|
-
stargazers_url: string;
|
|
43
|
-
contributors_url: string;
|
|
44
|
-
subscribers_url: string;
|
|
45
|
-
subscription_url: string;
|
|
46
|
-
commits_url: string;
|
|
47
|
-
git_commits_url: string;
|
|
48
|
-
comments_url: string;
|
|
49
|
-
issue_comment_url: string;
|
|
50
|
-
contents_url: string;
|
|
51
|
-
compare_url: string;
|
|
52
|
-
merges_url: string;
|
|
53
|
-
archive_url: string;
|
|
54
|
-
downloads_url: string;
|
|
55
|
-
issues_url: string;
|
|
56
|
-
pulls_url: string;
|
|
57
|
-
milestones_url: string;
|
|
58
|
-
notifications_url: string;
|
|
59
|
-
labels_url: string;
|
|
60
|
-
releases_url: string;
|
|
61
|
-
deployments_url: string;
|
|
62
|
-
}
|
|
63
|
-
export interface Commits {
|
|
64
|
-
commit: {
|
|
65
|
-
author: author;
|
|
66
|
-
};
|
|
67
|
-
}
|
|
68
|
-
export interface author {
|
|
69
|
-
name: string;
|
|
70
|
-
email: string;
|
|
71
|
-
}
|
|
72
|
-
interface ContributingDeveloper {
|
|
73
|
-
username: string;
|
|
74
|
-
repositories: ContributingDeveloperRepositories[];
|
|
75
|
-
}
|
|
76
|
-
interface ContributingDeveloperRepositories {
|
|
77
|
-
id: number;
|
|
78
|
-
name: string;
|
|
79
|
-
lastCommit: string;
|
|
80
|
-
isPrivate: boolean;
|
|
81
|
-
}
|
|
82
|
-
export declare const threeMonthsDate: string;
|
|
83
|
-
declare class GitHubService {
|
|
84
|
-
githubPAT: string;
|
|
85
|
-
apiURL: string;
|
|
86
|
-
constructor(githubPAT: string, apiURL?: string);
|
|
87
|
-
static create(githubPAT: string): GitHubService;
|
|
88
|
-
getGithubOrgs(): Promise<GitHubOrganization[]>;
|
|
89
|
-
getGithubOrgRepos(org: GitHubOrganization): Promise<GitHubRepository[]>;
|
|
90
|
-
getContributorsForRepo(repository: GitHubRepository): Promise<ContributingDeveloper[]>;
|
|
91
|
-
}
|
|
92
|
-
export default GitHubService;
|
|
@@ -1,99 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.threeMonthsDate = void 0;
|
|
4
|
-
const api_client_1 = require("@soos-io/api-client");
|
|
5
|
-
const d = new Date();
|
|
6
|
-
d.setDate(d.getDate() - 90);
|
|
7
|
-
exports.threeMonthsDate = `${d.getUTCFullYear()}-${d.getMonth() + 1}-${d.getUTCDate()}T${d.getHours()}:${d.getMinutes()}:${d.getSeconds()}Z`;
|
|
8
|
-
class GitHubService {
|
|
9
|
-
constructor(githubPAT, apiURL = "https://api.github.com") {
|
|
10
|
-
this.githubPAT = githubPAT;
|
|
11
|
-
this.apiURL = apiURL;
|
|
12
|
-
}
|
|
13
|
-
static create(githubPAT) {
|
|
14
|
-
return new GitHubService(githubPAT);
|
|
15
|
-
}
|
|
16
|
-
async getGithubOrgs() {
|
|
17
|
-
const url = `${this.apiURL}/user/orgs?per_page=100`;
|
|
18
|
-
api_client_1.soosLogger.verboseDebug(`Fetching GitHub orgs from ${url}`);
|
|
19
|
-
const response = await fetch(url, {
|
|
20
|
-
method: "GET",
|
|
21
|
-
headers: {
|
|
22
|
-
accept: "application/vnd.github+json",
|
|
23
|
-
Authorization: `Bearer ${this.githubPAT}`,
|
|
24
|
-
},
|
|
25
|
-
});
|
|
26
|
-
if (!response.ok) {
|
|
27
|
-
throw new Error(`Failed to fetch GitHub orgs: ${response.statusText}`);
|
|
28
|
-
}
|
|
29
|
-
api_client_1.soosLogger.verboseDebug(`Fetched GitHub orgs from ${url}`);
|
|
30
|
-
const orgs = await response.json();
|
|
31
|
-
api_client_1.soosLogger.verboseDebug(`GitHub orgs response: ${JSON.stringify(orgs)}`);
|
|
32
|
-
return orgs;
|
|
33
|
-
}
|
|
34
|
-
async getGithubOrgRepos(org) {
|
|
35
|
-
const url = `${this.apiURL}/orgs/${org.login}/repos?per_page=1`;
|
|
36
|
-
api_client_1.soosLogger.verboseDebug(`Fetching GitHub org repos from ${url}`);
|
|
37
|
-
const response = await fetch(url, {
|
|
38
|
-
method: "GET",
|
|
39
|
-
headers: {
|
|
40
|
-
accept: "application/vnd.github+json",
|
|
41
|
-
Authorization: `Bearer ${this.githubPAT}`,
|
|
42
|
-
},
|
|
43
|
-
});
|
|
44
|
-
if (!response.ok) {
|
|
45
|
-
throw new Error(`Failed to fetch GitHub org repos: ${response.statusText}`);
|
|
46
|
-
}
|
|
47
|
-
api_client_1.soosLogger.verboseDebug(`Fetched GitHub org repos from ${url}`);
|
|
48
|
-
const repos = await response.json();
|
|
49
|
-
api_client_1.soosLogger.verboseDebug(`GitHub org repos response: ${JSON.stringify(repos)}`);
|
|
50
|
-
return repos;
|
|
51
|
-
}
|
|
52
|
-
async getContributorsForRepo(repository) {
|
|
53
|
-
const url = `${this.apiURL}/repos/${repository.owner.login}/${repository.name}/commits?per_page=100&since=${exports.threeMonthsDate}`;
|
|
54
|
-
api_client_1.soosLogger.verboseDebug(`Fetching GitHub repo contributors from ${url}`);
|
|
55
|
-
const response = await fetch(url, {
|
|
56
|
-
method: "GET",
|
|
57
|
-
headers: {
|
|
58
|
-
accept: "application/vnd.github+json",
|
|
59
|
-
Authorization: `Bearer ${this.githubPAT}`,
|
|
60
|
-
},
|
|
61
|
-
});
|
|
62
|
-
if (!response.ok) {
|
|
63
|
-
throw new Error(`Failed to fetch GitHub repo contributors: ${response.statusText}`);
|
|
64
|
-
}
|
|
65
|
-
api_client_1.soosLogger.verboseDebug(`Fetched GitHub repo contributors from ${url}`);
|
|
66
|
-
const commits = await response.json();
|
|
67
|
-
const contributors = [];
|
|
68
|
-
commits.forEach(commit => {
|
|
69
|
-
const username = commit.commit.author;
|
|
70
|
-
const repo = {
|
|
71
|
-
id: repository.id,
|
|
72
|
-
name: repository.name,
|
|
73
|
-
lastCommit: exports.threeMonthsDate,
|
|
74
|
-
isPrivate: repository.private
|
|
75
|
-
};
|
|
76
|
-
const existingContributor = contributors.find(contributor => contributor.username === username.name);
|
|
77
|
-
if (existingContributor) {
|
|
78
|
-
existingContributor.repositories.forEach(existingRepo => {
|
|
79
|
-
if (existingRepo.id === repo.id) {
|
|
80
|
-
api_client_1.soosLogger.info("Repo already exists in the list");
|
|
81
|
-
return;
|
|
82
|
-
}
|
|
83
|
-
else {
|
|
84
|
-
existingContributor.repositories.push(repo);
|
|
85
|
-
}
|
|
86
|
-
});
|
|
87
|
-
}
|
|
88
|
-
else {
|
|
89
|
-
contributors.push({
|
|
90
|
-
username: username.name,
|
|
91
|
-
repositories: [repo]
|
|
92
|
-
});
|
|
93
|
-
}
|
|
94
|
-
});
|
|
95
|
-
api_client_1.soosLogger.verboseDebug(`GitHub repo contributors response: ${JSON.stringify(contributors)}`);
|
|
96
|
-
return contributors;
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
exports.default = GitHubService;
|
|
@@ -1,264 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"metadata": {
|
|
3
|
-
"scriptVersion": "0.0.1",
|
|
4
|
-
"days": 90
|
|
5
|
-
},
|
|
6
|
-
"organizationName": "soos-io",
|
|
7
|
-
"contributors": [
|
|
8
|
-
{
|
|
9
|
-
"username": "SOOS-GSteen",
|
|
10
|
-
"repositories": [
|
|
11
|
-
{
|
|
12
|
-
"id": 391059521,
|
|
13
|
-
"name": "soos-ci-analysis-python",
|
|
14
|
-
"lastCommit": "2023-11-15T18:34:28Z",
|
|
15
|
-
"isPrivate": false
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
"id": 391060504,
|
|
19
|
-
"name": "soos-sca-github-action",
|
|
20
|
-
"lastCommit": "2024-01-04T13:52:17Z",
|
|
21
|
-
"isPrivate": false
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"id": 417488624,
|
|
25
|
-
"name": "soos-dast",
|
|
26
|
-
"lastCommit": "2024-01-18T20:08:17Z",
|
|
27
|
-
"isPrivate": false
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
"id": 421561326,
|
|
31
|
-
"name": "soos-dast-github-action",
|
|
32
|
-
"lastCommit": "2023-12-01T16:33:47Z",
|
|
33
|
-
"isPrivate": false
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
"id": 703769955,
|
|
37
|
-
"name": "soos-csa",
|
|
38
|
-
"lastCommit": "2024-01-18T20:03:54Z",
|
|
39
|
-
"isPrivate": false
|
|
40
|
-
},
|
|
41
|
-
{
|
|
42
|
-
"id": 707826823,
|
|
43
|
-
"name": "soos-api-client",
|
|
44
|
-
"lastCommit": "2024-01-18T19:53:48Z",
|
|
45
|
-
"isPrivate": false
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
"id": 715746107,
|
|
49
|
-
"name": "soos-sbom",
|
|
50
|
-
"lastCommit": "2024-01-18T20:13:00Z",
|
|
51
|
-
"isPrivate": false
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
"id": 717064373,
|
|
55
|
-
"name": "soos-csa-github-action",
|
|
56
|
-
"lastCommit": "2023-12-21T16:14:19Z",
|
|
57
|
-
"isPrivate": false
|
|
58
|
-
},
|
|
59
|
-
{
|
|
60
|
-
"id": 720060036,
|
|
61
|
-
"name": "soos-sast",
|
|
62
|
-
"lastCommit": "2024-01-18T20:10:23Z",
|
|
63
|
-
"isPrivate": false
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
"id": 721676171,
|
|
67
|
-
"name": "soos-sast-github-action",
|
|
68
|
-
"lastCommit": "2023-12-21T16:13:20Z",
|
|
69
|
-
"isPrivate": false
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
"id": 724596621,
|
|
73
|
-
"name": "soos-sca",
|
|
74
|
-
"lastCommit": "2024-01-18T20:11:50Z",
|
|
75
|
-
"isPrivate": false
|
|
76
|
-
}
|
|
77
|
-
]
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
"username": "SOOS-JAlvarez",
|
|
81
|
-
"repositories": [
|
|
82
|
-
{
|
|
83
|
-
"id": 391060504,
|
|
84
|
-
"name": "soos-sca-github-action",
|
|
85
|
-
"lastCommit": "2023-12-26T14:52:44Z",
|
|
86
|
-
"isPrivate": false
|
|
87
|
-
},
|
|
88
|
-
{
|
|
89
|
-
"id": 391061021,
|
|
90
|
-
"name": "soos-ci-analysis-circleci-orb",
|
|
91
|
-
"lastCommit": "2023-12-26T14:56:14Z",
|
|
92
|
-
"isPrivate": false
|
|
93
|
-
},
|
|
94
|
-
{
|
|
95
|
-
"id": 409715211,
|
|
96
|
-
"name": "soos-integration-java-core",
|
|
97
|
-
"lastCommit": "2024-01-15T14:04:25Z",
|
|
98
|
-
"isPrivate": false
|
|
99
|
-
},
|
|
100
|
-
{
|
|
101
|
-
"id": 417488624,
|
|
102
|
-
"name": "soos-dast",
|
|
103
|
-
"lastCommit": "2024-01-11T17:54:10Z",
|
|
104
|
-
"isPrivate": false
|
|
105
|
-
},
|
|
106
|
-
{
|
|
107
|
-
"id": 421561326,
|
|
108
|
-
"name": "soos-dast-github-action",
|
|
109
|
-
"lastCommit": "2024-01-03T15:20:21Z",
|
|
110
|
-
"isPrivate": false
|
|
111
|
-
},
|
|
112
|
-
{
|
|
113
|
-
"id": 424384707,
|
|
114
|
-
"name": "kb-docs",
|
|
115
|
-
"lastCommit": "2024-01-09T18:15:47Z",
|
|
116
|
-
"isPrivate": false
|
|
117
|
-
},
|
|
118
|
-
{
|
|
119
|
-
"id": 488242034,
|
|
120
|
-
"name": "soos-dast-circleci-orb",
|
|
121
|
-
"lastCommit": "2023-11-28T19:02:29Z",
|
|
122
|
-
"isPrivate": false
|
|
123
|
-
},
|
|
124
|
-
{
|
|
125
|
-
"id": 560396288,
|
|
126
|
-
"name": "zaproxy",
|
|
127
|
-
"lastCommit": "2024-01-02T18:17:40Z",
|
|
128
|
-
"isPrivate": false
|
|
129
|
-
},
|
|
130
|
-
{
|
|
131
|
-
"id": 587360611,
|
|
132
|
-
"name": "sample-project-python",
|
|
133
|
-
"lastCommit": "2024-01-11T14:43:17Z",
|
|
134
|
-
"isPrivate": false
|
|
135
|
-
},
|
|
136
|
-
{
|
|
137
|
-
"id": 587363859,
|
|
138
|
-
"name": "sample-project-nuget",
|
|
139
|
-
"lastCommit": "2024-01-11T14:42:21Z",
|
|
140
|
-
"isPrivate": false
|
|
141
|
-
},
|
|
142
|
-
{
|
|
143
|
-
"id": 587366020,
|
|
144
|
-
"name": "sample-project-npm",
|
|
145
|
-
"lastCommit": "2024-01-11T14:48:26Z",
|
|
146
|
-
"isPrivate": false
|
|
147
|
-
},
|
|
148
|
-
{
|
|
149
|
-
"id": 592821605,
|
|
150
|
-
"name": "sample-project-node-package-fetch",
|
|
151
|
-
"lastCommit": "2024-01-11T14:53:07Z",
|
|
152
|
-
"isPrivate": false
|
|
153
|
-
},
|
|
154
|
-
{
|
|
155
|
-
"id": 592878845,
|
|
156
|
-
"name": "sample-project-node-vulnerability-fetch",
|
|
157
|
-
"lastCommit": "2024-01-11T14:52:05Z",
|
|
158
|
-
"isPrivate": false
|
|
159
|
-
},
|
|
160
|
-
{
|
|
161
|
-
"id": 592896836,
|
|
162
|
-
"name": "sample-project-node-license-fetch",
|
|
163
|
-
"lastCommit": "2024-01-11T14:51:00Z",
|
|
164
|
-
"isPrivate": false
|
|
165
|
-
},
|
|
166
|
-
{
|
|
167
|
-
"id": 596250526,
|
|
168
|
-
"name": "sample-project-dart",
|
|
169
|
-
"lastCommit": "2024-01-11T14:55:03Z",
|
|
170
|
-
"isPrivate": false
|
|
171
|
-
},
|
|
172
|
-
{
|
|
173
|
-
"id": 596576194,
|
|
174
|
-
"name": "sample-project-erlang",
|
|
175
|
-
"lastCommit": "2024-01-11T14:43:25Z",
|
|
176
|
-
"isPrivate": false
|
|
177
|
-
},
|
|
178
|
-
{
|
|
179
|
-
"id": 597169916,
|
|
180
|
-
"name": "sample-project-go",
|
|
181
|
-
"lastCommit": "2024-01-11T14:43:00Z",
|
|
182
|
-
"isPrivate": false
|
|
183
|
-
},
|
|
184
|
-
{
|
|
185
|
-
"id": 598310766,
|
|
186
|
-
"name": "sample-project-ruby",
|
|
187
|
-
"lastCommit": "2024-01-11T15:09:20Z",
|
|
188
|
-
"isPrivate": false
|
|
189
|
-
},
|
|
190
|
-
{
|
|
191
|
-
"id": 598814834,
|
|
192
|
-
"name": "sample-project-php",
|
|
193
|
-
"lastCommit": "2024-01-11T14:42:52Z",
|
|
194
|
-
"isPrivate": false
|
|
195
|
-
},
|
|
196
|
-
{
|
|
197
|
-
"id": 599211441,
|
|
198
|
-
"name": "sample-project-rust",
|
|
199
|
-
"lastCommit": "2024-01-11T14:42:31Z",
|
|
200
|
-
"isPrivate": false
|
|
201
|
-
},
|
|
202
|
-
{
|
|
203
|
-
"id": 703769955,
|
|
204
|
-
"name": "soos-csa",
|
|
205
|
-
"lastCommit": "2023-12-20T17:57:18Z",
|
|
206
|
-
"isPrivate": false
|
|
207
|
-
},
|
|
208
|
-
{
|
|
209
|
-
"id": 707826823,
|
|
210
|
-
"name": "soos-api-client",
|
|
211
|
-
"lastCommit": "2024-01-22T19:12:32Z",
|
|
212
|
-
"isPrivate": false
|
|
213
|
-
},
|
|
214
|
-
{
|
|
215
|
-
"id": 715746107,
|
|
216
|
-
"name": "soos-sbom",
|
|
217
|
-
"lastCommit": "2024-01-16T12:44:31Z",
|
|
218
|
-
"isPrivate": false
|
|
219
|
-
},
|
|
220
|
-
{
|
|
221
|
-
"id": 717064373,
|
|
222
|
-
"name": "soos-csa-github-action",
|
|
223
|
-
"lastCommit": "2023-12-14T14:50:37Z",
|
|
224
|
-
"isPrivate": false
|
|
225
|
-
},
|
|
226
|
-
{
|
|
227
|
-
"id": 719078266,
|
|
228
|
-
"name": "soos-sbom-github-action",
|
|
229
|
-
"lastCommit": "2023-11-17T18:19:48Z",
|
|
230
|
-
"isPrivate": false
|
|
231
|
-
},
|
|
232
|
-
{
|
|
233
|
-
"id": 720060036,
|
|
234
|
-
"name": "soos-sast",
|
|
235
|
-
"lastCommit": "2024-01-16T12:44:36Z",
|
|
236
|
-
"isPrivate": false
|
|
237
|
-
},
|
|
238
|
-
{
|
|
239
|
-
"id": 721676171,
|
|
240
|
-
"name": "soos-sast-github-action",
|
|
241
|
-
"lastCommit": "2024-01-02T18:33:05Z",
|
|
242
|
-
"isPrivate": false
|
|
243
|
-
},
|
|
244
|
-
{
|
|
245
|
-
"id": 724596621,
|
|
246
|
-
"name": "soos-sca",
|
|
247
|
-
"lastCommit": "2023-12-21T15:30:03Z",
|
|
248
|
-
"isPrivate": false
|
|
249
|
-
}
|
|
250
|
-
]
|
|
251
|
-
},
|
|
252
|
-
{
|
|
253
|
-
"username": "SOOS-JGomez",
|
|
254
|
-
"repositories": [
|
|
255
|
-
{
|
|
256
|
-
"id": 499192142,
|
|
257
|
-
"name": "sca-dast-aws-codebuild-cloud",
|
|
258
|
-
"lastCommit": "2023-12-15T16:22:18Z",
|
|
259
|
-
"isPrivate": false
|
|
260
|
-
}
|
|
261
|
-
]
|
|
262
|
-
}
|
|
263
|
-
]
|
|
264
|
-
}
|