harden-runner/src/index.ts
2021-11-08 14:10:22 -08:00

12 lines
357 B
TypeScript

(async () => {
if (process.platform !== "linux") {
console.log("Only runs on linux");
return;
}
var env = "beta";
console.log(
`View security insights and recommended policy at https://${env}.stepsecurity.io/github/${process.env["GITHUB_REPOSITORY"]}/actions/runs/${process.env["GITHUB_RUN_ID"]} after the run has finished`
);
})();