mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-14 06:57:26 +00:00
add types for buildSendNotificationsExec
This commit is contained in:
parent
ab4ead4c18
commit
4fc97fc913
1 changed files with 5 additions and 1 deletions
|
|
@ -220,7 +220,11 @@ const buildReportExec = async (): Promise<{
|
||||||
return {reportExecArgs, reportOptions, reportCommand};
|
return {reportExecArgs, reportOptions, reportCommand};
|
||||||
};
|
};
|
||||||
|
|
||||||
const buildSendNotificationsExec = async (): Promise<{}> => {
|
const buildSendNotificationsExec = async (): Promise<{
|
||||||
|
sendNotificationsExecArgs: any[];
|
||||||
|
sendNotificationsOptions: any;
|
||||||
|
sendNotificationsCommand: string;
|
||||||
|
}> => {
|
||||||
const gitService = getGitService();
|
const gitService = getGitService();
|
||||||
const overrideCommit = core.getInput('override_commit');
|
const overrideCommit = core.getInput('override_commit');
|
||||||
const overridePr = core.getInput('override_pr');
|
const overridePr = core.getInput('override_pr');
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue