build: replace upstream team-list dependency, add neuron launcher preferring compiled binary
This commit is contained in:
@@ -47,15 +47,8 @@ const VERSION = await (async () => {
|
||||
return `${major}.${minor}.${patch + 1}`
|
||||
})()
|
||||
|
||||
const bot = ["actions-user", "opencode", "opencode-agent[bot]"]
|
||||
const teamPath = path.resolve(import.meta.dir, "../../../.github/TEAM_MEMBERS")
|
||||
const team = [
|
||||
...(await Bun.file(teamPath)
|
||||
.text()
|
||||
.then((x) => x.split(/\r?\n/).map((x) => x.trim()))
|
||||
.then((x) => x.filter((x) => x && !x.startsWith("#")))),
|
||||
...bot,
|
||||
]
|
||||
// Neuron fork: upstream's TEAM_MEMBERS list is gone; maintain the bot list only.
|
||||
const team = ["neuron"]
|
||||
|
||||
export const Script = {
|
||||
get channel() {
|
||||
|
||||
Reference in New Issue
Block a user