Compare commits

3 Commits

Author SHA1 Message Date
Renovate Bot
8485ed83ec Update dependency rolldown to v1.0.0-beta.29 2025-07-26 01:05:04 +00:00
Renovate Bot
8b1ba3e6cb Update all non-major dependencies 2025-07-26 02:33:51 +02:00
c69ffe3299 Ignoring origin/HEAD if it shows up 2025-07-26 02:33:19 +02:00
2 changed files with 43 additions and 42 deletions

1
app.ts
View File

@@ -62,6 +62,7 @@ const fetchBranches = async (): Promise<string[]> => {
.split("\n") .split("\n")
.map((branch) => branch.trim()) .map((branch) => branch.trim())
.filter((branch) => branch !== "" .filter((branch) => branch !== ""
&& !branch.includes("origin/HEAD")
&& !IGNORED_BRANCHES && !IGNORED_BRANCHES
.some(ignored => new RegExp(`^${ ignored }$`) .some(ignored => new RegExp(`^${ ignored }$`)
.test(branch.replace("origin/", "")))); .test(branch.replace("origin/", ""))));

84
dist/app.js vendored

File diff suppressed because one or more lines are too long