Compare commits

1 Commits

Author SHA1 Message Date
Renovate Bot
31e092521c Update all non-major dependencies 2025-07-23 00:04:09 +00:00
2 changed files with 42 additions and 43 deletions

1
app.ts
View File

@@ -62,7 +62,6 @@ 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