Added job artifacts
All checks were successful
Push image to registry / build-image (push) Successful in 4m17s

This commit is contained in:
2025-10-23 19:31:56 +02:00
parent e66e489907
commit 6b5619b232

View File

@@ -8,6 +8,7 @@ use App\Browser\Jobs\InstagramRepost\DescriptionPipeline\InstagramDescriptionPip
use App\Models\InstagramNotification; use App\Models\InstagramNotification;
use App\Models\InstagramRepost; use App\Models\InstagramRepost;
use App\Models\Job; use App\Models\Job;
use App\Models\JobArtifact;
use App\Models\JobRun; use App\Models\JobRun;
use App\Notification\Notifications\JobDebugNotification; use App\Notification\Notifications\JobDebugNotification;
use App\Notification\Notifications\SimpleNotification; use App\Notification\Notifications\SimpleNotification;
@@ -98,6 +99,10 @@ class EldoradoRobuxPriceSentryJob extends BrowserJob implements ShouldBeUniqueUn
dump($threshold); dump($threshold);
Log::info("EldoradoRobuxPriceSentryJob: lowest price = $lowestPrice €, threshold = $threshold"); Log::info("EldoradoRobuxPriceSentryJob: lowest price = $lowestPrice €, threshold = $threshold");
$this->jobRun->addArtifact(new JobArtifact([
"name" => "Trouvé le prix le plus bas",
"content" => "- Prix le plus bas : $lowestPrice €/Robux\n- Seuil défini : $threshold €/Robux"
]));
if ($lowestPrice <= $threshold) { if ($lowestPrice <= $threshold) {
$message = "Le prix des Robux sur Eldorado est actuellement de **" . number_format($lowestPrice, 5, ",", " ") . " €**/Robux, ce qui est inférieur ou égal au seuil de **" . number_format($threshold, 5, ",", " ") . " €**.\n\n[Voir l'offre sur Eldorado]( " . self::LINK . " )"; $message = "Le prix des Robux sur Eldorado est actuellement de **" . number_format($lowestPrice, 5, ",", " ") . " €**/Robux, ce qui est inférieur ou égal au seuil de **" . number_format($threshold, 5, ",", " ") . " €**.\n\n[Voir l'offre sur Eldorado]( " . self::LINK . " )";