From 2bae0106429700937571eba7a7f626c05266c8cf Mon Sep 17 00:00:00 2001 From: frostebite Date: Sat, 28 Mar 2026 22:56:33 +0000 Subject: [PATCH 1/2] fix(deploy): use yarn instead of npm ci (package-lock.json removed) Co-Authored-By: Claude Opus 4.6 --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 5a0fbaf..a37af16 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -29,10 +29,10 @@ jobs: node-version: 24 - name: Install dependencies - run: npm ci + run: yarn install --frozen-lockfile - name: Build - run: npm run build + run: yarn build - name: Stop help-bot service shell: powershell From 2cbafc9c89b88433a634f06ad2c35f5169bba76c Mon Sep 17 00:00:00 2001 From: frostebite Date: Sun, 29 Mar 2026 00:55:46 +0000 Subject: [PATCH 2/2] Monitor #general channel in game-ci guild The game-ci #general channel was set to monitor: false but should be monitored. Enable monitoring with read_threads and add a system prompt. Co-Authored-By: Claude Opus 4.6 --- config.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config.json b/config.json index c20a51e..3aebcce 100644 --- a/config.json +++ b/config.json @@ -65,10 +65,11 @@ }, { "name": "general", + "system_prompt": "This is the main GameCI community channel. Help with general questions about GameCI, Unity CI/CD pipelines, and build automation. Be welcoming but concise.", "channel_type": "text", "reply_mode": "bot_api", - "read_threads": false, - "monitor": false + "read_threads": true, + "monitor": true }, { "name": "bugs",