Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
milankomaj authored Jul 6, 2024
1 parent 3b6aa9e commit 58ef960
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion mods/github.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,12 @@ async function handleGitHub({ topic, owner, repo }, options) {
case "release":
const opts = await getLatestRelease({ owner, repo, channel: "stable" });
return opts;

default:
return {
subject: topic,
status: "unknown",
color: "grey",
};
}
} catch (e) { console.log("👉 e.message:", e.message); return { subject: topic, status: e.message, labelColor: "grey" } }

Expand Down

0 comments on commit 58ef960

Please sign in to comment.