Improve variable names and comments

Also set default `GITHUB_EVENT_NAME` in `setupActionsVars`
This commit is contained in:
Michael B. Gale
2026-02-16 08:54:19 +00:00
parent a61e3cb9f2
commit 8b734d3bc2
9 changed files with 45 additions and 29 deletions
+1
View File
@@ -145,6 +145,7 @@ export function setupActionsVars(tempDir: string, toolsDir: string) {
process.env["RUNNER_TEMP"] = tempDir;
process.env["RUNNER_TOOL_CACHE"] = toolsDir;
process.env["GITHUB_WORKSPACE"] = tempDir;
process.env["GITHUB_EVENT_NAME"] = "push";
}
export interface LoggedMessage {