ci: bot check ci (#1349)

Drew Smirnoff created

Change summary

.github/workflows/bot-check-ci.yml | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)

Detailed changes

.github/workflows/bot-check-ci.yml 🔗

@@ -25,11 +25,10 @@ jobs:
       - name: Process CI Result
         uses: actions/github-script@v9
         env:
-          BOT_NODE_MODULES: /tmp/botci/node_modules
+          NODE_PATH: /tmp/botci/node_modules
         with:
           github-token: ${{ secrets.HOMEBREW_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
           script: |
-            module.paths.unshift(process.env.BOT_NODE_MODULES);
             const run = context.payload.workflow_run;
             const owner = context.repo.owner;
             const repo = context.repo.repo;
@@ -170,7 +169,7 @@ jobs:
               return lines.join("\n");
             }
 
-            const marker = `<!-- bot-check-ci:${workflowName} -->`;
+            const marker = ``;
 
             async function upsertPRComment(body) {
               const { data: comments } = await github.rest.issues.listComments({