diff --git a/.github/workflows/update-topics.yaml b/.github/workflows/update-topics.yaml index e9fd33d4fe..5d853ddf9c 100644 --- a/.github/workflows/update-topics.yaml +++ b/.github/workflows/update-topics.yaml @@ -62,6 +62,11 @@ jobs: headers, }); + if (!res.ok) { + console.log(roomId, "failed to fetch", await res.text()); + return; + } + const data = await res.json(); const topic = data.topic.replace(regex, releaseTopic); if (topic === data.topic) {