add types for buildSendNotificationsExec

This commit is contained in:
Tim Krins 2024-09-20 15:50:14 +01:00
parent ab4ead4c18
commit 4fc97fc913
No known key found for this signature in database

View file

@ -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');