1
0
Fork 0
mirror of synced 2026-06-05 18:55:14 +00:00

Make boolean inputs

This commit is contained in:
Varun Sharma 2022-10-22 11:43:03 -07:00
commit d8b192edce
3 changed files with 5 additions and 5 deletions

4
dist/pre/index.js vendored
View file

@ -10492,8 +10492,8 @@ var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _argume
api_url: api_url,
allowed_endpoints: core.getInput("allowed-endpoints"),
egress_policy: core.getInput("egress-policy"),
disable_sudo: core.getInput("disable-sudo"),
disable_file_monitoring: core.getInput("disable-file-monitoring"),
disable_sudo: core.getBooleanInput("disable-sudo"),
disable_file_monitoring: core.getBooleanInput("disable-file-monitoring"),
private: github.context.payload.repository.private,
};
let _http = new lib.HttpClient();

File diff suppressed because one or more lines are too long

View file

@ -27,8 +27,8 @@ import * as httpm from "@actions/http-client";
api_url: api_url,
allowed_endpoints: core.getInput("allowed-endpoints"),
egress_policy: core.getInput("egress-policy"),
disable_sudo: core.getInput("disable-sudo"),
disable_file_monitoring: core.getInput("disable-file-monitoring"),
disable_sudo: core.getBooleanInput("disable-sudo"),
disable_file_monitoring: core.getBooleanInput("disable-file-monitoring"),
private: context.payload.repository.private,
};