From a4eb2f40bbc90e7685cbe5f8d6aa28d7b445b519 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Mon, 10 Jul 2023 11:12:17 +0100 Subject: [PATCH] Update update-topics.yaml --- .github/workflows/update-topics.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update-topics.yaml b/.github/workflows/update-topics.yaml index be0a962b35..320e92f9c0 100644 --- a/.github/workflows/update-topics.yaml +++ b/.github/workflows/update-topics.yaml @@ -53,6 +53,7 @@ jobs: const topic = data.topic.replace(regex, RELEASE_TOPIC); if (topic === data.topic) { console.log(roomId, "nothing to do"); + return; } await fetch(apiUrl, { @@ -63,7 +64,7 @@ jobs: }, headers, }); - console.log(roomId, "topic updated"); + console.log(roomId, "topic updated:", topic); } await updateReleaseInTopic(LOBBY_ROOM_ID);