WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit 18dcb75

Browse files
committed
remove version from workflow check
1 parent ea4f93c commit 18dcb75

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

dist/index.js

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41264,7 +41264,6 @@ axios.interceptors.response.use(
4126441264
const branch = process.env.IS_DEV ? "main" : config.githubContext.branch;
4126541265

4126641266
let prerun = config.input.prerun;
41267-
let testdriverBranch = config.input.branch;
4126841267
let key = config.input.key;
4126941268
let os = config.input.os;
4127041269
let testdriveraiVersion = config.input.version;
@@ -41275,8 +41274,8 @@ axios.interceptors.response.use(
4127541274
let prTestFilename = config.input.prTestFilename;
4127641275

4127741276
console.log(chalk.green("Version"));
41278-
console.log(`testdriver@${testdriveraiVersion}`);
41279-
console.log(`testdriver-action@${pgkVersion}`);
41277+
console.log(`testdriverai/testdriverai@${testdriveraiVersion}`);
41278+
console.log(`testdriverai/action@${pgkVersion}`);
4128041279

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

@@ -41349,8 +41348,7 @@ axios.interceptors.response.use(
4134941348
} = await axios.post(
4135041349
`${baseUrl}/testdriver-workflow`,
4135141350
{
41352-
dispatchId,
41353-
branch: testdriverBranch,
41351+
dispatchId
4135441352
},
4135541353
{
4135641354
Accept: "application/json",

src/index.js

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ axios.interceptors.response.use(
6969
const branch = process.env.IS_DEV ? "main" : config.githubContext.branch;
7070

7171
let prerun = config.input.prerun;
72-
let testdriverBranch = config.input.branch;
7372
let key = config.input.key;
7473
let os = config.input.os;
7574
let testdriveraiVersion = config.input.version;
@@ -80,8 +79,8 @@ axios.interceptors.response.use(
8079
let prTestFilename = config.input.prTestFilename;
8180

8281
console.log(chalk.green("Version"));
83-
console.log(`testdriver@${testdriveraiVersion}`);
84-
console.log(`testdriver-action@${pgkVersion}`);
82+
console.log(`testdriverai/testdriverai@${testdriveraiVersion}`);
83+
console.log(`testdriverai/action@${pgkVersion}`);
8584

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

@@ -154,8 +153,7 @@ axios.interceptors.response.use(
154153
} = await axios.post(
155154
`${baseUrl}/testdriver-workflow`,
156155
{
157-
dispatchId,
158-
branch: testdriverBranch,
156+
dispatchId
159157
},
160158
{
161159
Accept: "application/json",

0 commit comments

Comments
 (0)