type Github = {
token: string;
};
/**
* Upload an analysis as SARIF data
* Uploads SARIF data containing the results of a code scanning analysis to make the results available in a repository.
*/
export async function main(
auth: Github,
owner: string,
repo: string,
body: {
checkout_uri?: string;
commit_sha: string;
ref: string;
sarif: string;
started_at?: string;
tool_name?: string;
validate?: boolean;
[k: string]: unknown;
}
) {
const url = new URL(
`https://api.github.com/repos/${owner}/${repo}/code-scanning/sarifs`
);
const response = await fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: "Bearer " + auth.token,
},
body: JSON.stringify(body),
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 367 days ago
type Github = {
token: string;
};
/**
* Upload an analysis as SARIF data
* Uploads SARIF data containing the results of a code scanning analysis to make the results available in a repository.
*/
export async function main(
auth: Github,
owner: string,
repo: string,
body: {
checkout_uri?: string;
commit_sha: string;
ref: string;
sarif: string;
started_at?: string;
tool_name?: string;
validate?: boolean;
[k: string]: unknown;
}
) {
const url = new URL(
`https://api.github.com/repos/${owner}/${repo}/code-scanning/sarifs`
);
const response = await fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: "Bearer " + auth.token,
},
body: JSON.stringify(body),
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 927 days ago