mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-07 19:47:25 +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};
|
||||
};
|
||||
|
||||
const buildSendNotificationsExec = async (): Promise<{}> => {
|
||||
const buildSendNotificationsExec = async (): Promise<{
|
||||
sendNotificationsExecArgs: any[];
|
||||
sendNotificationsOptions: any;
|
||||
sendNotificationsCommand: string;
|
||||
}> => {
|
||||
const gitService = getGitService();
|
||||
const overrideCommit = core.getInput('override_commit');
|
||||
const overridePr = core.getInput('override_pr');
|
||||
|
|
|
|||
Loading…
Reference in a new issue