mirror of
https://github.com/step-security/harden-runner.git
synced 2026-06-06 12:17:06 +00:00
10 lines
266 B
TypeScript
10 lines
266 B
TypeScript
export function printInfo(web_url) {
|
|
console.log(
|
|
"\x1b[32m%s\x1b[0m",
|
|
"View security insights and recommended policy at:"
|
|
);
|
|
|
|
console.log(
|
|
`${web_url}/github/${process.env["GITHUB_REPOSITORY"]}/actions/runs/${process.env["GITHUB_RUN_ID"]}`
|
|
);
|
|
}
|