From b901a6731b6acf1497008fa42b2f444a9646d7dd Mon Sep 17 00:00:00 2001 From: Ole Petter Date: Mon, 26 Sep 2022 09:23:22 +0200 Subject: [PATCH] chore: fix the bot monitoring of the bb images Signed-off-by: Ole Petter --- scripts/linkbot/monitor-bb.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/linkbot/monitor-bb.js b/scripts/linkbot/monitor-bb.js index 590da60..59941e2 100644 --- a/scripts/linkbot/monitor-bb.js +++ b/scripts/linkbot/monitor-bb.js @@ -10,8 +10,8 @@ export const checkForUpdates = ({ url, latestDate }) => if (date === latestDate) { return; } - const consoleLinks = await getLinksByMatch(matches[0].link, 'buster-console'); - const result = await getLinksByMatch(consoleLinks[0].link, 'bone-debian.*.img.xz$').then((links) => `${target}=\"${links[0].link}\"`); + const consoleLinks = await getLinksByMatch(matches[0].link, 'bullseye-minimal-arm64'); + const result = await getLinksByMatch(consoleLinks[0].link, 'bbai64-debian.*.img.xz$').then((links) => `${target}=\"${links[0].link}\"`); return { newLine: result }; });