test add: schedule every10 minutes
This commit is contained in:
parent
39de7f47ca
commit
4447e88168
|
@ -47,5 +47,24 @@ class Kernel extends ConsoleKernel
|
||||||
);
|
);
|
||||||
$gitea_export->export_issues($firstDay, $lastDay, ['state' => 'closed']);
|
$gitea_export->export_issues($firstDay, $lastDay, ['state' => 'closed']);
|
||||||
})->monthly();
|
})->monthly();
|
||||||
|
$schedule->call(function () {
|
||||||
|
$firstDay = date('Y-m-01'); // First day of the current month
|
||||||
|
$lastDay = date('Y-m-t'); // Last day of the current month
|
||||||
|
|
||||||
|
$calculate_agent_cost = true;
|
||||||
|
$third_party_integrations_allow = true;
|
||||||
|
$third_party_integrations_nextcloud = true;
|
||||||
|
$third_party_integrations_open_project = false;
|
||||||
|
$email_send_allow = true;
|
||||||
|
|
||||||
|
$gitea_export = new GiteaExport(
|
||||||
|
$calculate_agent_cost,
|
||||||
|
$third_party_integrations_allow,
|
||||||
|
$third_party_integrations_nextcloud,
|
||||||
|
$third_party_integrations_open_project,
|
||||||
|
$email_send_allow,
|
||||||
|
);
|
||||||
|
$gitea_export->export_issues($firstDay, $lastDay, ['state' => 'closed']);
|
||||||
|
})->everyFiveMinutes();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue