Skip to content

Commit

Permalink
package
Browse files Browse the repository at this point in the history
  • Loading branch information
ianjennings committed Apr 22, 2024
1 parent 18b166a commit 0d0592e
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33637,7 +33637,6 @@ class Config {
this.input = {
prompt: core.getInput("prompt"),
prerun: core.getInput("prerun"),
version: core.getInput("version"),
gh_token: core.getInput("gh_token"),
};

Expand Down Expand Up @@ -39984,6 +39983,11 @@ const waitFor = (ms) => new Promise((r) => setTimeout(r, ms));
: config.githubContext.owner + "/" + config.githubContext.repo;
const branch = process.env.IS_DEV ? "main" : config.githubContext.branch;

let prerun = config.input.prerun;
let version = config.input.version;

console.log(chalk.green("TestDriver:"), `"Version ${version}"`);

console.log(chalk.green("TestDriver:"), '"Looking into it..."');
console.log(chalk.green("TestDriver:"), '"I can help ya test that!"');

Expand All @@ -39994,12 +39998,10 @@ const waitFor = (ms) => new Promise((r) => setTimeout(r, ms));
});


let prerun = config.input.prerun;
let version = config.input.version;

const personalAccessToken = process.env.GITHUB_TOKEN;

console.log(chalk.green("TestDriver:"), '"Starting my engine..."');
console.log(chalk.green("TestDriver:"), '"Starting my engine..."');mm

const {
data: { dispatchId },
Expand Down Expand Up @@ -40151,4 +40153,4 @@ const waitFor = (ms) => new Promise((r) => setTimeout(r, ms));

module.exports = __webpack_exports__;
/******/ })()
;
;

0 comments on commit 0d0592e

Please sign in to comment.