We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3dc10a1 commit 78cea89Copy full SHA for 78cea89
1 file changed
packages/script/src/index.ts
@@ -46,23 +46,14 @@ const VERSION = await (async () => {
46
return `${major}.${minor}.${patch + 1}`
47
})()
48
49
+const bot = ["actions-user", "opencode", "opencode-agent[bot]"]
50
+const teamPath = path.resolve(import.meta.dir, "../../../.github/TEAM_MEMBERS")
51
const team = [
- "actions-user",
- "opencode",
52
- "rekram1-node",
53
- "thdxr",
54
- "kommander",
55
- "jayair",
56
- "fwang",
57
- "MrMushrooooom",
58
- "adamdotdevin",
59
- "iamdavidhill",
60
- "Brendonovich",
61
- "nexxeln",
62
- "Hona",
63
- "jlongster",
64
- "opencode-agent[bot]",
65
- "R44VC0RP",
+ ...(await Bun.file(teamPath)
+ .text()
+ .then((x) => x.split(/\r?\n/).map((x) => x.trim()))
+ .then((x) => x.filter((x) => x && !x.startsWith("#")))),
+ ...bot,
66
]
67
68
export const Script = {
0 commit comments