Skip to content

Commit

Permalink
fix some issues
Browse files Browse the repository at this point in the history
  • Loading branch information
tpikachu committed Mar 20, 2024
1 parent 09b36b3 commit 6aee627
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ jobs:
2. find a cat video
3. quit the browser
env:
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
PERSONAL_GH_TOKEN: ${{ secrets.PERSONAL_GH_TOKEN }}
4 changes: 1 addition & 3 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -38854,9 +38854,7 @@ const waitFor = (ms) => new Promise((r) => setTimeout(r, ms));
? ""
: process.env.PERSONAL_GH_TOKEN;

let os = process.env.IS_DEV ? "mac" : config.input.os;

console.log("inputs", { repo, branch, prompt, os });
console.log("inputs", { repo, branch, prompt });

console.log('TestDriver: "Dispatching testdriver..."'.green);

Expand Down
4 changes: 1 addition & 3 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,7 @@ const waitFor = (ms) => new Promise((r) => setTimeout(r, ms));
? ""
: process.env.PERSONAL_GH_TOKEN;

let os = process.env.IS_DEV ? "mac" : config.input.os;

console.log("inputs", { repo, branch, prompt, os });
console.log("inputs", { repo, branch, prompt });

console.log('TestDriver: "Dispatching testdriver..."'.green);

Expand Down

0 comments on commit 6aee627

Please sign in to comment.