Skip to content

Commit

Permalink
proper or statement
Browse files Browse the repository at this point in the history
  • Loading branch information
ianjennings committed Feb 20, 2025
1 parent 6759f6c commit 2390578
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -41261,7 +41261,7 @@ axios.interceptors.response.use(
const repo = process.env.IS_DEV
? "replayableio/testdriver-action"
: config.githubContext.owner + "/" + config.githubContext.repo;
const branch = config.input.branch | config.githubContext.branch | "main";
const branch = config.input.branch || config.githubContext.branch || "main";

let prerun = config.input.prerun;
let key = config.input.key;
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ axios.interceptors.response.use(
const repo = process.env.IS_DEV
? "replayableio/testdriver-action"
: config.githubContext.owner + "/" + config.githubContext.repo;
const branch = config.input.branch | config.githubContext.branch | "main";
const branch = config.input.branch || config.githubContext.branch || "main";

let prerun = config.input.prerun;
let key = config.input.key;
Expand Down

0 comments on commit 2390578

Please sign in to comment.