Skip to content

Commit

Permalink
fix for supplying branch (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
ianjennings authored Feb 20, 2025
1 parent 8212a0a commit a3242b8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -40090,8 +40090,8 @@ axios.interceptors.response.use(
let prTestFilename = config.input.prTestFilename;

console.log(chalk.green("Version"));
console.log(`testdriver@${pgkVersion}`);
console.log(`testdriver-action@${testdriverBranch}`);
console.log(`testdriver@${testdriveraiVersion}`);
console.log(`testdriver-action@${pgkVersion}`);

let prompt = process.env.IS_DEV ? "open youtube" : config.input.prompt;

Expand Down Expand Up @@ -40137,7 +40137,7 @@ axios.interceptors.response.use(
prompt,
os,
prerun,
version: testdriverBranch,
version: testdriveraiVersion,
key,
os,
personalAccessToken,
Expand Down Expand Up @@ -40180,7 +40180,7 @@ axios.interceptors.response.use(
const waitUntilWorkflowAvailable = async () => {
let workflowId;
while (!workflowId) {
await waitFor(1000 * 60);
await waitFor(1000 * 60 * 2);
workflowId = await checkWorkflow();
}

Expand Down
8 changes: 4 additions & 4 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ axios.interceptors.response.use(
let prTestFilename = config.input.prTestFilename;

console.log(chalk.green("Version"));
console.log(`testdriver@${pgkVersion}`);
console.log(`testdriver-action@${testdriverBranch}`);
console.log(`testdriver@${testdriveraiVersion}`);
console.log(`testdriver-action@${pgkVersion}`);

let prompt = process.env.IS_DEV ? "open youtube" : config.input.prompt;

Expand Down Expand Up @@ -127,7 +127,7 @@ axios.interceptors.response.use(
prompt,
os,
prerun,
version: testdriverBranch,
version: testdriveraiVersion,
key,
os,
personalAccessToken,
Expand Down Expand Up @@ -170,7 +170,7 @@ axios.interceptors.response.use(
const waitUntilWorkflowAvailable = async () => {
let workflowId;
while (!workflowId) {
await waitFor(1000 * 60);
await waitFor(1000 * 60 * 2);
workflowId = await checkWorkflow();
}

Expand Down

0 comments on commit a3242b8

Please sign in to comment.