1
0
Fork 0
mirror of synced 2026-06-05 14:48:19 +00:00
This commit is contained in:
Varun Sharma 2025-04-03 06:23:18 -07:00
commit f2f9cdcd95
3 changed files with 3 additions and 3 deletions

2
dist/pre/index.js vendored
View file

@ -88144,7 +88144,7 @@ var setup_awaiter = (undefined && undefined.__awaiter) || function (thisArg, _ar
disable_sudo: lib_core.getBooleanInput("disable-sudo"), disable_sudo: lib_core.getBooleanInput("disable-sudo"),
disable_file_monitoring: lib_core.getBooleanInput("disable-file-monitoring"), disable_file_monitoring: lib_core.getBooleanInput("disable-file-monitoring"),
private: ((_b = (_a = github.context === null || github.context === void 0 ? void 0 : github.context.payload) === null || _a === void 0 ? void 0 : _a.repository) === null || _b === void 0 ? void 0 : _b.private) || false, private: ((_b = (_a = github.context === null || github.context === void 0 ? void 0 : github.context.payload) === null || _a === void 0 ? void 0 : _a.repository) === null || _b === void 0 ? void 0 : _b.private) || false,
is_github_hosted: isGithubHosted(), is_github_hosted: true,
is_debug: lib_core.isDebug(), is_debug: lib_core.isDebug(),
one_time_key: "", one_time_key: "",
}; };

File diff suppressed because one or more lines are too long

View file

@ -64,7 +64,7 @@ interface MonitorResponse {
disable_sudo: core.getBooleanInput("disable-sudo"), disable_sudo: core.getBooleanInput("disable-sudo"),
disable_file_monitoring: core.getBooleanInput("disable-file-monitoring"), disable_file_monitoring: core.getBooleanInput("disable-file-monitoring"),
private: context?.payload?.repository?.private || false, private: context?.payload?.repository?.private || false,
is_github_hosted: isGithubHosted(), is_github_hosted: true,
is_debug: core.isDebug(), is_debug: core.isDebug(),
one_time_key: "", one_time_key: "",
}; };